2013-08-23 14:39:21 +02:00
|
|
|
/**
|
2014-02-02 19:05:45 -06:00
|
|
|
* Copyright (C) 2009-2014 Typesafe Inc. <http://www.typesafe.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 {
|
2013-12-17 14:25:56 +01:00
|
|
|
system.settings.SerializeAllCreators should be(true)
|
|
|
|
|
system.settings.SerializeAllMessages should be(true)
|
2013-08-23 14:39:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|