class ActionTest extends AsyncTest[RelationalTestDB]

Source
ActionTest.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ActionTest
  2. AsyncTest
  3. GenericTest
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ActionTest()

Type Members

  1. implicit class AssertionExtensionMethods[T] extends AnyRef
    Definition Classes
    AsyncTest
  2. implicit class CollectionAssertionExtensionMethods[T] extends AnyRef
    Definition Classes
    AsyncTest
  3. implicit class CollectionDBIOActionExtensionMethods[T, +S <: NoStream, -E <: Effect] extends AnyRef
    Definition Classes
    AsyncTest
  4. implicit class DBIOActionExtensionMethods[T, +S <: NoStream, -E <: Effect] extends AnyRef
    Definition Classes
    AsyncTest
  5. implicit class StringExtensionMethods extends AnyRef
    Definition Classes
    GenericTest

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from ActionTest toany2stringadd[ActionTest] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ActionTest, B)
    Implicit
    This member is added by an implicit conversion from ActionTest toArrowAssoc[ActionTest] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. var _tdb: RelationalTestDB
    Attributes
    protected[this]
    Definition Classes
    GenericTest
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def assertNesting(q: Rep[_], exp: Int): Unit
    Definition Classes
    GenericTest
  9. implicit def asyncTestExecutionContext: ExecutionContextExecutor
    Attributes
    protected
    Definition Classes
    AsyncTest
  10. final def cleanup(): Unit
    Definition Classes
    GenericTest
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
  12. final def closeKeepAlive(): Unit
    Definition Classes
    GenericTest
  13. lazy val db: slick.relational.RelationalProfile.Backend.Database
    Definition Classes
    GenericTest
  14. def ensuring(cond: (ActionTest) => Boolean, msg: => Any): ActionTest
    Implicit
    This member is added by an implicit conversion from ActionTest toEnsuring[ActionTest] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: (ActionTest) => Boolean): ActionTest
    Implicit
    This member is added by an implicit conversion from ActionTest toEnsuring[ActionTest] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean, msg: => Any): ActionTest
    Implicit
    This member is added by an implicit conversion from ActionTest toEnsuring[ActionTest] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean): ActionTest
    Implicit
    This member is added by an implicit conversion from ActionTest toEnsuring[ActionTest] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  20. def foreach[T](p: Publisher[T])(f: (T) => Any): Future[Unit]

    Iterate synchronously over a Reactive Stream.

    Iterate synchronously over a Reactive Stream.

    Definition Classes
    AsyncTest
  21. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  22. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  23. def ifCap[E <: Effect, R](caps: Capability*)(f: => DBIOAction[R, NoStream, E]): DBIOAction[Unit, NoStream, E]
    Definition Classes
    AsyncTest
  24. def ifCapF[R](caps: Capability*)(f: => Future[R]): Future[Unit]
    Definition Classes
    AsyncTest
  25. def ifCapU[T](caps: Capability*)(f: => T): Unit
    Definition Classes
    AsyncTest
  26. def ifNotCap[E <: Effect, R](caps: Capability*)(f: => DBIOAction[R, NoStream, E]): DBIOAction[Unit, NoStream, E]
    Definition Classes
    AsyncTest
  27. def ifNotCapF[R](caps: Capability*)(f: => Future[R]): Future[Unit]
    Definition Classes
    AsyncTest
  28. def ifNotCapU[T](caps: Capability*)(f: => T): Unit
    Definition Classes
    AsyncTest
  29. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  30. def jcap: JdbcCapabilities
    Definition Classes
    GenericTest
  31. final def mark[R, S <: NoStream, E <: Effect](id: String, f: => DBIOAction[R, S, E]): DBIOAction[R, S, E]
    Definition Classes
    GenericTest
  32. final def mark[T](id: String, f: => T): T
    Definition Classes
    GenericTest
  33. def materialize[T](p: Publisher[T]): Future[Vector[T]]

    Synchronously consume a Reactive Stream and materialize it as a Vector.

    Synchronously consume a Reactive Stream and materialize it as a Vector.

    Definition Classes
    AsyncTest
  34. def materializeAsync[T, R](p: Publisher[T], tr: (T) => Future[R], delay: Duration = Duration(100L, TimeUnit.MILLISECONDS)): Future[Vector[R]]

    Asynchronously consume a Reactive Stream and materialize it as a Vector, requesting new elements one by one and transforming them after the specified delay.

    Asynchronously consume a Reactive Stream and materialize it as a Vector, requesting new elements one by one and transforming them after the specified delay. This ensures that the transformation does not run in the synchronous database context but still preserves proper sequencing.

    Definition Classes
    AsyncTest
  35. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  36. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  37. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  38. def rcap: RelationalCapabilities
    Definition Classes
    GenericTest
  39. final val reuseInstance: Boolean(true)
    Definition Classes
    AsyncTestGenericTest
  40. def scap: SqlCapabilities
    Definition Classes
    GenericTest
  41. def seq[E <: Effect](actions: DBIOAction[_, NoStream, E]*): DBIOAction[Unit, NoStream, E]
    Definition Classes
    AsyncTest
  42. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  43. def tcap: capabilities
    Definition Classes
    GenericTest
  44. final lazy val tdb: RelationalTestDB
    Definition Classes
    GenericTest
  45. def testCollect: Future[Unit]
  46. def testCreateIfNotExistsDropIfExists: DBIOAction[Unit, NoStream, Schema with Schema with Schema with Schema with Read with Read with Write with Read with Write with Read with Schema with Schema with Schema with Schema with Schema with Schema with Schema with Schema with Read with Read with Schema with Schema with Schema with Schema with Schema with Schema with Write with Read with Write with Read with Schema with Schema with Schema with Schema with Schema with Schema with Schema with Write with Write with Schema]
  47. def testDeepRecursion: DBIOAction[Unit, NoStream, Read]
  48. def testDropIfExistsWithFK: DBIOAction[Unit, NoStream, Schema with Schema]

    If an original table already exists and we add an FK to the schema and try to dropIfExists() it shouldn't fail.

  49. def testDropIfExistsWithPK: DBIOAction[Unit, NoStream, Schema with Schema with Schema with Schema]
  50. def testDropIfExistsWithoutTableCreation: DBIOAction[Unit, NoStream, Schema with Schema with Schema]
  51. def testFlatten: Future[Unit]
  52. def testOptionSequence: DBIOAction[Unit, NoStream, Schema with Read with Read with All]
  53. def testSessionPinning: DBIOAction[Unit, NoStream, Schema with Write with Effect with Effect with Read with Effect with Effect with Read with Effect with Effect with Effect with Read with Effect with Effect]
  54. def testSimpleActionAsFuture: Future[Unit]
  55. def testStreaming: Future[Unit]
  56. def testTruncate: DBIOAction[Unit, NoStream, Schema with Read with Write with Read with Schema with Read]
  57. def testZipWith: Future[Unit]
  58. def toString(): String
    Definition Classes
    AnyRef → Any
  59. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  60. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  61. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  62. object GetSession extends SynchronousDatabaseAction[slick.basic.BasicProfile.Backend.Session, NoStream, slick.basic.BasicProfile.Backend.Context, slick.basic.BasicProfile.Backend.StreamingContext, Effect]

    Test Action: Get the current database session

    Test Action: Get the current database session

    Definition Classes
    AsyncTest
  63. object GetStatementParameters extends SynchronousDatabaseAction[StatementParameters, NoStream, JdbcActionContext, JdbcStreamingActionContext, Effect]

    Test Action: Get the current statement parameters, except for statementInit which is always set to null

    Test Action: Get the current statement parameters, except for statementInit which is always set to null

    Definition Classes
    AsyncTest
  64. object GetTransactionality extends SynchronousDatabaseAction[(Int, Boolean), NoStream, JdbcActionContext, JdbcStreamingActionContext, Effect]

    Test Action: Get the current transactionality level and autoCommit flag

    Test Action: Get the current transactionality level and autoCommit flag

    Definition Classes
    AsyncTest
  65. object IsPinned extends SynchronousDatabaseAction[Boolean, NoStream, slick.basic.BasicProfile.Backend.Context, slick.basic.BasicProfile.Backend.StreamingContext, Effect]

    Test Action: Check if the current database session is pinned

    Test Action: Check if the current database session is pinned

    Definition Classes
    AsyncTest

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

  2. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ActionTest toStringFormat[ActionTest] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  3. def [B](y: B): (ActionTest, B)
    Implicit
    This member is added by an implicit conversion from ActionTest toArrowAssoc[ActionTest] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from AsyncTest[RelationalTestDB]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromActionTest to any2stringadd[ActionTest]

Inherited by implicit conversion StringFormat fromActionTest to StringFormat[ActionTest]

Inherited by implicit conversion Ensuring fromActionTest to Ensuring[ActionTest]

Inherited by implicit conversion ArrowAssoc fromActionTest to ArrowAssoc[ActionTest]

Ungrouped