我收到一条错误消息“运行FlowTests时出错:找不到测试名称”
我一直关注Akka的文档网站上的示例,但它们似乎无法正常工作
以下是我的测试代码:
class FlowTests extends TestKit(ActorSystemContainer.getInstance().getSystem) {
val usersDataLines = scala.io.Source.fromFile("data/BX-Users-TEST.csv", "ISO-8859-1").getLines().drop(1)
val usersSource = Source.fromIterator(() => usersDataLines)
usersSource.runWith(TestSink.probe[String]).expectNext("some data").expectComplete()
}
答案 0 :(得分:0)
好吧我明白了。我使用FlowTest类作为Scala测试但是我需要做的是创建一个扩展FunSuite的类,然后用awaitAssert()调用我的FlowTests