Class/Object

akka.actor.testkit.typed.scaladsl

ActorTestKitBase

Related Docs: object ActorTestKitBase | package scaladsl

Permalink

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
Type Hierarchy
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)

    Permalink

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

  2. new ActorTestKitBase(config: Config)

    Permalink

    Use a custom config for the actor system.

  3. new ActorTestKitBase(config: String)

    Permalink

    Use a custom config for the actor system.

  4. new ActorTestKitBase()

    Permalink
  5. new ActorTestKitBase(testKit: ActorTestKit)

    Permalink

Abstract Value Members

  1. abstract def afterAll(): Unit

    Permalink

    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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    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)

    Permalink
    Implicit information
    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

    Permalink
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def createTestProbe[M](name: String): TestProbe[M]

    Permalink

    See corresponding method on ActorTestKit

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

    Permalink

    See corresponding method on ActorTestKit

  10. def ensuring(cond: (ActorTestKitBase) ⇒ Boolean, msg: ⇒ Any): ActorTestKitBase

    Permalink
    Implicit information
    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

    Permalink
    Implicit information
    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

    Permalink
    Implicit information
    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

    Permalink
    Implicit information
    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

    Permalink
    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    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()
  18. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  19. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  20. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  21. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  24. implicit def scheduler: Scheduler

    Permalink

    See corresponding method on ActorTestKit

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

    Permalink

    See corresponding method on ActorTestKit

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

    Permalink

    See corresponding method on ActorTestKit

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

    Permalink

    See corresponding method on ActorTestKit

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

    Permalink

    See corresponding method on ActorTestKit

  29. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  30. implicit def system: typed.ActorSystem[Nothing]

    Permalink

    See corresponding method on ActorTestKit

  31. val testKit: ActorTestKit

    Permalink
  32. implicit def testKitSettings: TestKitSettings

    Permalink

    See corresponding method on ActorTestKit

  33. implicit def timeout: Timeout

    Permalink

    See corresponding method on ActorTestKit

  34. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  35. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. def [B](y: B): (ActorTestKitBase, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from ActorTestKitBase to ArrowAssoc[ActorTestKitBase] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

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