我在我的Scala服务中有后端点。我想使用集成测试jUnit来测试它们。我正在寻找一些教程,但我只找到使用播放或其他框架的例子......我只想使用jUnit。你推荐一些例子吗?
class ExampleIntegrationJUnitStyleSpec extends JUnitSuite with Matchers {
@Test def shouldRespondWithPublicResource(): Unit = {
//test post endpoint
}
}
object ExampleIntegrationJUnitStyleSpec {
private lazy val _myAppRule = new JUnitMyAppRule("integration", 8811)
@ClassRule
def myAppRule: JUnitMyAppRule = _myAppRule
}