20 lines
515 B
Scala
20 lines
515 B
Scala
/**
|
|
* Copyright (C) 2009-2017 Lightbend Inc. <http://www.lightbend.com>
|
|
*/
|
|
package akka.cluster.ddata
|
|
|
|
import akka.remote.testkit.MultiNodeSpecCallbacks
|
|
|
|
import org.scalatest.{ BeforeAndAfterAll, WordSpecLike }
|
|
import org.scalatest.Matchers
|
|
|
|
/**
|
|
* Hooks up MultiNodeSpec with ScalaTest
|
|
*/
|
|
trait STMultiNodeSpec extends MultiNodeSpecCallbacks
|
|
with WordSpecLike with Matchers with BeforeAndAfterAll {
|
|
|
|
override def beforeAll() = multiNodeSpecBeforeAll()
|
|
|
|
override def afterAll() = multiNodeSpecAfterAll()
|
|
}
|