Packages

package scaladsl

Source
package.scala
Linear Supertypes
Content Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. scaladsl
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final class ActorTestKit extends AnyRef

    Testkit for asynchronous testing of typed actors, meant for mixing into the test class.

    Testkit for asynchronous testing of typed actors, meant for mixing into the test class.

    Provides a typed actor system started on creation, used for all test cases and shut down when shutdown is called.

    The actor system has a custom guardian that allows for spawning arbitrary actors using the spawn methods.

    Designed to work with any test framework, but framework glue code that calls shutdown after all tests has run needs to be provided by the user.

    For synchronous testing of a Behavior see BehaviorTestKit

    Annotations
    @ApiMayChange()
  2. abstract class ActorTestKitBase extends AnyRef

    A base class for the ActorTestKit, making it possible to have testing framework (e.g.

    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.

  3. trait BehaviorTestKit[T] extends AnyRef

    Used for synchronous testing akka.actor.typed.Behaviors.

    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()
  4. final class ManualTime extends AnyRef

    Not for user instantiation, see ManualTime#apply

  5. abstract class ScalaTestWithActorTestKit extends ActorTestKitBase with TestSuite with Matchers with BeforeAndAfterAll with ScalaFutures with Eventually

    A ScalaTest base class for the ActorTestKit, making it possible to have ScalaTest manage the lifecycle of the testkit.

    A ScalaTest base class for the ActorTestKit, making it possible to have ScalaTest manage the lifecycle of the testkit. The testkit will be automatically shut down when the test completes or fails using ScalaTest's BeforeAndAfterAll trait. If a spec overrides afterAll it must call super.afterAll.

    Note that ScalaTest is not provided as a transitive dependency of the testkit module but must be added explicitly to your project to use this.

  6. implicit final class TestDuration extends AnyVal

    Scala API.

    Scala API. Scale timeouts (durations) during tests with the configured 'akka.actor.testkit.typed.timefactor'. Implicit class providing dilated method.

    import scala.concurrent.duration._
    import akka.actor.testkit.typed.scaladsl._
    10.milliseconds.dilated

    Uses the scaling factor from the TestTimeFactor in the TestKitSettings (in implicit scope).

  7. trait TestInbox[T] extends AnyRef

    Utility for use as an ActorRef when *synchronously* testing akka.actor.typed.Behavior with akka.actor.testkit.typed.javadsl.BehaviorTestKit.

    Utility for use as an ActorRef when *synchronously* testing akka.actor.typed.Behavior with akka.actor.testkit.typed.javadsl.BehaviorTestKit.

    If you plan to use a real akka.actor.typed.ActorSystem then use akka.actor.testkit.typed.javadsl.TestProbe for asynchronous testing.

    Use factory apply in companion to create instances

    Not for user extension

    Annotations
    @DoNotInherit()
  8. trait TestProbe[M] extends AnyRef

    Create instances through the factories in the TestProbe companion.

    Create instances through the factories in the TestProbe companion.

    A test probe is essentially a queryable mailbox which can be used in place of an actor and the received messages can then be asserted

    Not for user extension

    Annotations
    @DoNotInherit()

Value Members

  1. object ActorTestKit
  2. object ActorTestKitBase
  3. object BehaviorTestKit
  4. object Effects

    Factories for behavior effects for BehaviorTestKit, each effect has a suitable equals and can be used to compare actual effects to expected ones.

  5. object FishingOutcomes
  6. object ManualTime

    Manual time allows you to do async tests while controlling the scheduler of the system.

    Manual time allows you to do async tests while controlling the scheduler of the system.

    To use it you need to configure the ActorSystem/ActorTestKit with ManualTime.config and access the scheduler control through ManualTime.apply()

  7. object TestInbox
    Annotations
    @ApiMayChange()
  8. object TestProbe