gpt4 book ai didi

scalatest - 在 Scalatest 中是否有等同于 @Before 或 beforeEach

转载 作者:行者123 更新时间:2023-12-05 01:15:50 24 4
gpt4 key购买 nike

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

最佳答案

在scalatest中你可以使用BeforeAndAfterAllBeforeAndAfterEach特性来添加这样的方法,然后你需要覆盖它们fe:

class BaseTest extends FlatSpec with BeforeAndAfterAll with BeforeAndAfterEach{

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

//..

}

关于scalatest - 在 Scalatest 中是否有等同于 @Before 或 beforeEach,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55176409/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com