object ActorTestKit
- Source
- ActorTestKit.scala
- Alphabetic
- By Inheritance
- ActorTestKit
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val ApplicationTestConfig: Config
Config loaded from
application-test.conf
, which is used if no specific config is given. - def apply(name: String, customConfig: Config, settings: TestKitSettings): ActorTestKit
Create an akka.actor.typed.ActorSystem named based on the provided name, use the provided custom config for the actor system, and the testkit will use the provided setting.
Create an akka.actor.typed.ActorSystem named based on the provided name, use the provided custom config for the actor system, and the testkit will use the provided setting.
It will create an akka.actor.typed.ActorSystem with this name, e.g. threads will include the name.
It will also used the provided customConfig provided to create the
ActorSystem
, and provided setting.When the test has completed you should terminate the
ActorSystem
and the testkit with ActorTestKit#shutdownTestKit. - def apply(name: String, customConfig: Config): ActorTestKit
Create a test kit named based on the provided name, and uses the provided custom config for the actor system.
Create a test kit named based on the provided name, and uses the provided custom config for the actor system.
It will create an akka.actor.typed.ActorSystem with this name, e.g. threads will include the name.
It will also used the provided customConfig provided to create the
ActorSystem
When the test has completed you should terminate the
ActorSystem
and the testkit with ActorTestKit#shutdownTestKit. - def apply(customConfig: Config): ActorTestKit
Create a testkit named from the ActorTestKit class, and use a custom config for the actor system.
Create a testkit named from the ActorTestKit class, and use a custom config for the actor system.
It will also used the provided customConfig provided to create the
ActorSystem
When the test has completed you should terminate the
ActorSystem
and the testkit with ActorTestKit#shutdownTestKit. - def apply(name: String): ActorTestKit
Create a testkit using the provided name.
Create a testkit using the provided name.
It will create an akka.actor.typed.ActorSystem with this name, e.g. threads will include the name. When the test has completed you should terminate the
ActorSystem
and the testkit with ActorTestKit#shutdownTestKit.Config loaded from
application-test.conf
if that exists, otherwise using default configuration from the reference.conf resources that ship with the Akka libraries. The application.conf of your project is not used in this case. - def apply(system: typed.ActorSystem[_]): ActorTestKit
Create a testkit from the provided actor system.
Create a testkit from the provided actor system.
When the test has completed you should terminate the
ActorSystem
and the testkit with ActorTestKit#shutdownTestKit.Config loaded from the provided actor if that exists, otherwise using default configuration from the reference.conf resources that ship with the Akka libraries.
- def apply(): ActorTestKit
Create a testkit named from the ActorTestKit class.
Create a testkit named from the ActorTestKit class.
When the test has completed you should terminate the
ActorSystem
and the testkit with ActorTestKit#shutdownTestKit.Config loaded from
application-test.conf
if that exists, otherwise using default configuration from the reference.conf resources that ship with the Akka libraries. The application.conf of your project is not used in this case. - final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def shutdown(system: typed.ActorSystem[_], timeout: Duration, throwIfShutdownFails: Boolean = false): Unit
Shutdown the given akka.actor.typed.ActorSystem and block until it shuts down or the
duration
hits.Shutdown the given akka.actor.typed.ActorSystem and block until it shuts down or the
duration
hits. If the timeout hitsverifySystemShutdown
decides - def shutdown(system: typed.ActorSystem[_]): Unit
Shutdown the given akka.actor.typed.ActorSystem and block until it shuts down, if more time than
TestKitSettings.DefaultActorSystemShutdownTimeout
passes an exception is thrown - final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])