如何使用jUnit在Scala中测试rest端点

时间:2016-08-24 09:17:48

标签: scala rest junit

我在我的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
}

1 个答案:

答案 0 :(得分:0)

您可以使用Specs2和Dispatch库(http://dispatch.databinder.net/Dispatch.html)测试REST API。