在 ScalaTest 中,一个套件可以包含零到多个测试和零到多个嵌套套件。一个套件的嵌套套件由它的 nestedSuites 方法提供,要运行的测试的名称由它的 testNames 方法提供。一般的答案是,对于任何内置的 ScalaTest 风格特征,嵌套套件和测试执行的顺序由它们在 nestedSuites 和 testNames 的返回值中出现的顺序决定。因此,如果您没有得到您想要的订单,那么您可以覆盖这些方法中的一个或两个。
但是,对于测试顺序,简单地使用测试是函数的特征之一可能更容易,因为这些特征按照它们在源中出现的顺序运行测试。(相比之下,套件按测试名称的字母顺序运行测试。)所以我建议您使用 FunSuite 作为初学者。例如:
import org.scalatest.FunSuite
class MySuite extends FunSuite {
test("this one will run first because it appears first") {
// ...
}
test("this one will run second because it appears second") {
// ...
}
test("this one will run third, and so on") {
// ...
}
}
至于让套件按顺序运行,这种情况很少发生,因为人们喜欢在编写新套件时使用发现来查找新套件。但是这样做的方法是覆盖nestedSuites。在 1.5 中,Suites 类是一种方便的方法:
import org.scalatest.Suites
class MySuites extends Suites(
new MyFirstSuite,
new MySecondSuite,
new MyThirdSuite,
new MyFourthSuite
)
然后你运行 MySuites,它会按照你声明它们的顺序运行它的嵌套套件。