All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dev.chopsticks.testkit.AkkaTestKitAutoShutDown.scala Maven / Gradle / Ivy

There is a newer version: 3.12.0
Show newest version
package dev.chopsticks.testkit

import akka.testkit.TestKit
import org.scalatest.{BeforeAndAfterAll, Suite}

trait AkkaTestKitAutoShutDown extends BeforeAndAfterAll {
  this: AkkaTestKit with Suite =>

  override val invokeBeforeAllAndAfterAllEvenIfNoTestsAreExpected = true

  override protected def afterAll(): Unit = {
    super.afterAll()
    TestKit.shutdownActorSystem(system, verifySystemShutdown = true)
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy