Scalatest中是否有等效于@Before或beforeEach

时间:2019-03-15 05:57:34

标签: scalatest

jasminejunit之类的测试框架提供了在每次测试运行之前配置测试环境的方法。在scalatestplayspec中有类似的东西吗?

1 个答案:

答案 0 :(得分:0)

在scalatest中,您可以使用特征BeforeAndAfterAllBeforeAndAfterEach添加此类方法,然后您需要对它们进行覆盖:

class BaseTest extends FlatSpec with BeforeAndAfterAll with BeforeAndAfterEach{

  override def beforeAll(): Unit = {
    super.beforeAll()
    //your logic here
  }

  //..

}