parent
630e712b9f
commit
41f20cbb81
43 changed files with 5726 additions and 3 deletions
|
|
@ -0,0 +1,21 @@
|
|||
/*
|
||||
* Copyright (C) 2018-2020 Lightbend Inc. <https://www.lightbend.com>
|
||||
*/
|
||||
|
||||
package akka.persistence.testkit.javadsl
|
||||
|
||||
import akka.actor.Props
|
||||
import akka.persistence.testkit._
|
||||
|
||||
class TestKitSerializeSpec extends CommonTestKitTests {
|
||||
override lazy val system = initSystemWithEnabledPlugin("TestKitSerializeSpec", true, true)
|
||||
|
||||
override def specificTests(): Unit = "fail next nonserializable persisted" in {
|
||||
val pid = randomPid()
|
||||
val a = system.actorOf(Props(classOf[A], pid, None))
|
||||
a ! new C
|
||||
|
||||
watch(a)
|
||||
expectTerminated(a)
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue