Trait/Object

akka.actor.testkit.typed.scaladsl

BehaviorTestKit

Related Docs: object BehaviorTestKit | package scaladsl

Permalink

trait BehaviorTestKit[T] extends AnyRef

Used for synchronous testing akka.actor.typed.Behaviors. Stores all effects e.g. Spawning of children, watching and offers access to what effects have taken place.

For asynchronous testing of Behaviors running see ActorTestKit

Not for user extension. See BehaviorTestKit.apply factory methods

Annotations
@DoNotInherit()
Source
BehaviorTestKit.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BehaviorTestKit
  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

Abstract Value Members

  1. abstract def childInbox[U](child: typed.ActorRef[U]): TestInbox[U]

    Permalink

    Get the child inbox for the child ActorRef, or fail if there is no such child.

  2. abstract def childInbox[U](name: String): TestInbox[U]

    Permalink

    Get the child inbox for the child with the given name, or fail if there is no child with the given name spawned

  3. abstract def childTestKit[U](child: typed.ActorRef[U]): BehaviorTestKit[U]

    Permalink

    Get the akka.actor.typed.Behavior testkit for the given child akka.actor.typed.ActorRef.

  4. abstract def currentBehavior: Behavior[T]

    Permalink

    The current behavior, can change any time run is called

  5. abstract def expectEffect(expectedEffect: Effect): Unit

    Permalink

    Asserts that the oldest effect is the expectedEffect.

    Asserts that the oldest effect is the expectedEffect. Removing it from further assertions.

  6. abstract def expectEffectPF[R](f: PartialFunction[Effect, R]): R

    Permalink

    Asserts that the oldest effect matches the given partial function.

  7. abstract def expectEffectType[E <: Effect](implicit classTag: ClassTag[E]): E

    Permalink

    Asserts that the oldest effect is of type T.

    Asserts that the oldest effect is of type T. Consumes and returns the concrete effect for further direct assertions.

  8. abstract def hasEffects(): Boolean

    Permalink

    Returns if there have been any effects.

  9. abstract def isAlive: Boolean

    Permalink

    Is the current behavior alive or stopped

  10. abstract def retrieveAllEffects(): Seq[Effect]

    Permalink

    Requests all the effects.

    Requests all the effects. The effects are consumed, subsequent calls will only see new effects.

  11. abstract def retrieveEffect(): Effect

    Permalink

    Requests the oldest Effect or akka.actor.testkit.typed.scaladsl.Effects.NoEffects if no effects have taken place.

    Requests the oldest Effect or akka.actor.testkit.typed.scaladsl.Effects.NoEffects if no effects have taken place. The effect is consumed, subsequent calls won't will not include this effect.

  12. abstract def returnedBehavior: Behavior[T]

    Permalink

    Returns the current behavior as it was returned from processing the previous message.

    Returns the current behavior as it was returned from processing the previous message. For example if Behavior.unhandled is returned it will be kept here, but not in currentBehavior.

  13. abstract def run(message: T): Unit

    Permalink

    Send the message to the behavior and record any Effects

  14. abstract def runOne(): Unit

    Permalink

    Send the first message in the selfInbox to the behavior and run it, recording Effects.

  15. abstract def selfInbox(): TestInbox[T]

    Permalink

    The self inbox contains messages the behavior sent to context.self

  16. abstract def signal(signal: Signal): Unit

    Permalink

    Send the signal to the beheavior and record any Effects

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 BehaviorTestKit[T] to any2stringadd[BehaviorTestKit[T]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (BehaviorTestKit[T], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from BehaviorTestKit[T] to ArrowAssoc[BehaviorTestKit[T]] 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 ensuring(cond: (BehaviorTestKit[T]) ⇒ Boolean, msg: ⇒ Any): BehaviorTestKit[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from BehaviorTestKit[T] to Ensuring[BehaviorTestKit[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: (BehaviorTestKit[T]) ⇒ Boolean): BehaviorTestKit[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from BehaviorTestKit[T] to Ensuring[BehaviorTestKit[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean, msg: ⇒ Any): BehaviorTestKit[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from BehaviorTestKit[T] to Ensuring[BehaviorTestKit[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean): BehaviorTestKit[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from BehaviorTestKit[T] to Ensuring[BehaviorTestKit[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. final def eq(arg0: AnyRef): Boolean

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

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

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

    Permalink
    Implicit information
    This member is added by an implicit conversion from BehaviorTestKit[T] to StringFormat[BehaviorTestKit[T]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  16. final def getClass(): Class[_]

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  22. def ref: typed.ActorRef[T]

    Permalink

    The self reference of the actor living inside this testkit.

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

    Permalink
    Definition Classes
    AnyRef
  24. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. def [B](y: B): (BehaviorTestKit[T], B)

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

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from BehaviorTestKit[T] to any2stringadd[BehaviorTestKit[T]]

Inherited by implicit conversion StringFormat from BehaviorTestKit[T] to StringFormat[BehaviorTestKit[T]]

Inherited by implicit conversion Ensuring from BehaviorTestKit[T] to Ensuring[BehaviorTestKit[T]]

Inherited by implicit conversion ArrowAssoc from BehaviorTestKit[T] to ArrowAssoc[BehaviorTestKit[T]]

Ungrouped