org.scalatest:全局设置(像之前的AllSuites一样?)
我有一个 scala 应用程序,使用 org.scalatest 进行了一些测试。这些测试需要一些全局设置(和拆卸),以便管理测试数据库。
请不要告诉我我的测试不应该访问数据库,我应该使用 Java-DAO-Stub-WTF-Overkill-Way™ 来完成它:-)。
我正在使用 SBT 运行测试,它提供了一种在测试之前和之后执行代码的方法:
testOptions in Test += Tests.Setup( () => println("Setup") )
testOptions in Test += Tests.Cleanup( () => println("Cleanup") )
不幸的是,我无法访问那里有问题的类。毫不奇怪,将它们导入 build.sbt 也不起作用。
有什么想法吗?
I have a scala application with some test using org.scalatest. These test need some global setup (and teardown), in order to manage the test database.
Please don't tell me my tests should not hit the database and I should do it the Java-DAO-Stub-WTF-Overkill-Way™ :-).
I'm running the tests using SBT, which provides a way to execute code before and after test:
testOptions in Test += Tests.Setup( () => println("Setup") )
testOptions in Test += Tests.Cleanup( () => println("Cleanup") )
Unfortunately I cannot access the classes in question there. Unsurprisingly, importing them into build.sbt does not work either.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 BeforeAndAfterAll 或 BeforeAndAfter 特征,具体取决于您的需要。
之前和之后:
因此,在这种情况下,您将定义一个 MasterSuite,其中包含所有其他套件/测试,从而扩展了此特征。
之前和之后:
You can use the BeforeAndAfterAll or BeforeAndAfter traits, depending upon your needs.
BeforeAndAfterAll:
So in this instance, you would define a MasterSuite which contains all other Suites/Tests, which extends this trait.
BeforeAndAfter: