gpt4 book ai didi

scala - 在 Akka 中测试 Actor

转载 作者:行者123 更新时间:2023-12-03 09:21:52 24 4
gpt4 key购买 nike

当我运行测试 Actor 的基本示例时:

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 的类和特征。 .名为 WordSpec 的类特征是 WordSpecLike .所以只需使用 WordSpecLike而不是 WordSpec :

class MySpec(_system: ActorSystem) extends TestKit(_system) with ImplicitSender
with WordSpecLike with MustMatchers with BeforeAndAfterAll {

关于scala - 在 Akka 中测试 Actor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19986360/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com