Packages

abstract class ActorTestKitBase extends AnyRef

A base class for the ActorTestKit, making it possible to have testing framework (e.g. ScalaTest) manage the lifecycle of the testkit.

An implementation for ScalaTest is ScalaTestWithActorTestKit.

Another abstract class that is testing framework specific should extend this class and automatically shut down the testKit when the test completes or fails by implementing ActorTestKitBase#afterAll.

Source
ActorTestKitBase.scala
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ActorTestKitBase
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ActorTestKitBase(config: Config, settings: TestKitSettings)

    Use a custom config for the actor system, and a custom akka.actor.testkit.typed.TestKitSettings.

  2. new ActorTestKitBase(config: Config)

    Use a custom config for the actor system.

  3. new ActorTestKitBase(config: String)

    Use a custom config for the actor system.

  4. new ActorTestKitBase()
  5. new ActorTestKitBase(testKit: ActorTestKit)

Abstract Value Members

  1. abstract def afterAll(): Unit

    To be implemented by "more" concrete class that can mixin BeforeAndAfterAll or similar, for example FlatSpecLike with BeforeAndAfterAll.

    To be implemented by "more" concrete class that can mixin BeforeAndAfterAll or similar, for example FlatSpecLike with BeforeAndAfterAll. Implement by calling testKit.shutdownTestKit().

    Attributes
    protected

Concrete 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 ActorTestKitBase to any2stringadd[ActorTestKitBase] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ActorTestKitBase, B)
    Implicit
    This member is added by an implicit conversion from ActorTestKitBase to ArrowAssoc[ActorTestKitBase] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  8. def createTestProbe[M](name: String): TestProbe[M]

    See corresponding method on ActorTestKit

  9. def createTestProbe[M](): TestProbe[M]

    See corresponding method on ActorTestKit

  10. def ensuring(cond: (ActorTestKitBase) ⇒ Boolean, msg: ⇒ Any): ActorTestKitBase
    Implicit
    This member is added by an implicit conversion from ActorTestKitBase to Ensuring[ActorTestKitBase] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: (ActorTestKitBase) ⇒ Boolean): ActorTestKitBase
    Implicit
    This member is added by an implicit conversion from ActorTestKitBase to Ensuring[ActorTestKitBase] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean, msg: ⇒ Any): ActorTestKitBase
    Implicit
    This member is added by an implicit conversion from ActorTestKitBase to Ensuring[ActorTestKitBase] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean): ActorTestKitBase
    Implicit
    This member is added by an implicit conversion from ActorTestKitBase to Ensuring[ActorTestKitBase] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  16. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ActorTestKitBase to StringFormat[ActorTestKitBase] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  17. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. implicit def scheduler: Scheduler

    See corresponding method on ActorTestKit

  24. def spawn[T](behavior: Behavior[T], name: String, props: typed.Props): typed.ActorRef[T]

    See corresponding method on ActorTestKit

  25. def spawn[T](behavior: Behavior[T], props: typed.Props): typed.ActorRef[T]

    See corresponding method on ActorTestKit

  26. def spawn[T](behavior: Behavior[T], name: String): typed.ActorRef[T]

    See corresponding method on ActorTestKit

  27. def spawn[T](behavior: Behavior[T]): typed.ActorRef[T]

    See corresponding method on ActorTestKit

  28. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  29. implicit def system: typed.ActorSystem[Nothing]

    See corresponding method on ActorTestKit

  30. val testKit: ActorTestKit
  31. implicit def testKitSettings: TestKitSettings

    See corresponding method on ActorTestKit

  32. implicit def timeout: Timeout

    See corresponding method on ActorTestKit

  33. def toString(): String
    Definition Classes
    AnyRef → Any
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  36. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. def [B](y: B): (ActorTestKitBase, B)
    Implicit
    This member is added by an implicit conversion from ActorTestKitBase to ArrowAssoc[ActorTestKitBase] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Deprecated Value Members

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

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from ActorTestKitBase to any2stringadd[ActorTestKitBase]

Inherited by implicit conversion StringFormat from ActorTestKitBase to StringFormat[ActorTestKitBase]

Inherited by implicit conversion Ensuring from ActorTestKitBase to Ensuring[ActorTestKitBase]

Inherited by implicit conversion ArrowAssoc from ActorTestKitBase to ArrowAssoc[ActorTestKitBase]

Ungrouped