scala – 测试Akka中的演员
发布时间:2020-12-16 09:48:39 所属栏目:安全 来源:网络整理
导读:当我运行基本示例测试演员: class MySpec(_system: ActorSystem) extends TestKit(_system) with ImplicitSender with WordSpec with MustMatchers with BeforeAndAfterAll { 我得到错误: class WordSpec needs to be a trait to be mixed in 我究竟做错了
当我运行基本示例测试演员:
class MySpec(_system: ActorSystem) extends TestKit(_system) with ImplicitSender with WordSpec with MustMatchers with BeforeAndAfterAll { 我得到错误: class WordSpec needs to be a trait to be mixed in 我究竟做错了什么? 解决方法
在ScalaTest 2.0中,您可以找到WordSpec的类和trait。名为WordSpec和trait的类是WordSpecLike。所以只是使用WordSpecLike而不是WordSpec:
class MySpec(_system: ActorSystem) extends TestKit(_system) with ImplicitSender with WordSpecLike with MustMatchers with BeforeAndAfterAll { (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |