jasmine
和junit
之类的测试框架提供了在每次测试运行之前配置测试环境的方法。在scalatest
和playspec
中有类似的东西吗?
答案 0 :(得分:0)
在scalatest中,您可以使用特征BeforeAndAfterAll
和BeforeAndAfterEach
添加此类方法,然后您需要对它们进行覆盖:
class BaseTest extends FlatSpec with BeforeAndAfterAll with BeforeAndAfterEach{
override def beforeAll(): Unit = {
super.beforeAll()
//your logic here
}
//..
}