播放单元测试,每个端点命中都会创建一个新的数据库

时间:2019-04-17 14:06:27

标签: scala unit-testing playframework slick

结合使用Spec2框架进行游戏我正在对后端的一些端点进行单元测试。 enter image description here 测试使用“ WithServer”模型,即

``"endPoint" should { 
    "return 200" in WithServer(fakeApp) {
         //Json request goes here
   }
}``

这可以正常工作,但是每次您要命中一个端点时都会创建一个新的服务器实例。有没有办法在单元测试开始时首先设置服务器,并在完成时关闭服务器?

0 个答案:

没有答案