Java Code Examples for akka.testkit.JavaTestKit#shutdownActorSystem()

The following examples show how to use akka.testkit.JavaTestKit#shutdownActorSystem() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PersistenceActorTestBase.java    From ditto with Eclipse Public License 2.0 5 votes vote down vote up
@After
public void tearDownBase() {
    if (actorSystem != null) {
        JavaTestKit.shutdownActorSystem(actorSystem);
        actorSystem = null;
    }
}
 
Example 2
Source File: MesosResourceManagerTest.java    From Flink-CEPplus with Apache License 2.0 4 votes vote down vote up
@After
public void teardown() {
	JavaTestKit.shutdownActorSystem(system);
}
 
Example 3
Source File: TaskManagerTest.java    From Flink-CEPplus with Apache License 2.0 4 votes vote down vote up
@AfterClass
public static void teardown() {
	JavaTestKit.shutdownActorSystem(system);
}
 
Example 4
Source File: InstanceManagerTest.java    From Flink-CEPplus with Apache License 2.0 4 votes vote down vote up
@AfterClass
public static void teardown(){
	JavaTestKit.shutdownActorSystem(system);
	system = null;
}
 
Example 5
Source File: FlinkUntypedActorTest.java    From Flink-CEPplus with Apache License 2.0 4 votes vote down vote up
@AfterClass
public static void teardown() {
	JavaTestKit.shutdownActorSystem(actorSystem);
}
 
Example 6
Source File: MesosResourceManagerTest.java    From flink with Apache License 2.0 4 votes vote down vote up
@After
public void teardown() {
	JavaTestKit.shutdownActorSystem(system);
}
 
Example 7
Source File: BlogEntityTest.java    From lagom-example with Apache License 2.0 4 votes vote down vote up
@AfterClass
public static void afterClass() {
    JavaTestKit.shutdownActorSystem(system);
    system = null;
}
 
Example 8
Source File: HelloEntityTest.java    From lagom-example with Apache License 2.0 4 votes vote down vote up
@AfterClass
public static void teardown() {
    JavaTestKit.shutdownActorSystem(system);
    system = null;
}
 
Example 9
Source File: PingPongActorTest.java    From learning-akka with Apache License 2.0 4 votes vote down vote up
@AfterClass
public static void tearDown() {
    JavaTestKit.shutdownActorSystem(system);
    system = null;
}
 
Example 10
Source File: MesosResourceManagerTest.java    From flink with Apache License 2.0 4 votes vote down vote up
@After
public void teardown() {
	JavaTestKit.shutdownActorSystem(system);
}