| package sample.distributeddata | |
| import org.apache.pekko.remote.testkit.MultiNodeSpecCallbacks | |
| import org.scalatest.BeforeAndAfterAll | |
| import org.scalatest.matchers.should.Matchers | |
| import org.scalatest.wordspec.AnyWordSpecLike | |
| /** | |
| * Hooks up MultiNodeSpec with ScalaTest | |
| */ | |
| trait STMultiNodeSpec extends MultiNodeSpecCallbacks | |
| with AnyWordSpecLike with Matchers with BeforeAndAfterAll { | |
| override def beforeAll() = multiNodeSpecBeforeAll() | |
| override def afterAll() = multiNodeSpecAfterAll() | |
| } |