SBTプロジェクトで2つのテストが定義されている場合:
class Spec1 extends Specification {
def is =
"Tests for specification 1" ^
p ^
"Test case 1" ! todo ^
end
}
と
class Spec2 extends Specification {
def is =
"Tests for specification 2" ^
p ^
"Test case 2" ! todo ^
end
}
次にtest
、SBTの内部から実行すると、これらの両方のテストが実行されます。これらのテストの1つだけを実行する最も簡単な方法は何ですか?