我正在尝试在我的 bdd 测试中使用https://www.testcontainers.org/,如下所示:
final class DetectorSpec extends BddSpec {
private val listener1 = TestProbe()
private val listener2 = TestProbe()
private val detector = system.actorOf(DetectorSupervisor.props)
var sapMock = new FixedHostPortGenericContainer("zerocoder/sapmock:2.1.1")
.withFixedExposedPort(8080, 9090)
override def afterAll(): Unit = {
TestKit.shutdownActorSystem(system)
}
......
上面代码的问题是,变量sapMock
有 type Nothing
。看来,方法链接不起作用。
为什么变量sapMock
有类型Nothing
?