2013-08-23 14:39:21 +02:00
|
|
|
/**
|
2017-01-04 17:37:10 +01:00
|
|
|
* Copyright (C) 2009-2017 Lightbend Inc. <http://www.lightbend.com>
|
2013-08-23 14:39:21 +02:00
|
|
|
*/
|
|
|
|
|
package akka.remote
|
|
|
|
|
|
|
|
|
|
import akka.testkit.AkkaSpec
|
|
|
|
|
|
|
|
|
|
class SerializationChecksPlainRemotingSpec extends AkkaSpec {
|
|
|
|
|
|
|
|
|
|
"Settings serialize-messages and serialize-creators" must {
|
|
|
|
|
|
|
|
|
|
"be on for tests" in {
|
2015-01-16 11:09:59 +01:00
|
|
|
system.settings.SerializeAllCreators should ===(true)
|
|
|
|
|
system.settings.SerializeAllMessages should ===(true)
|
2013-08-23 14:39:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|