在sbt
中,当我键入testOnly
并按tab
键后,我将获得所有可用的测试:
sbt:plugger> testOnly
-- com.sweetsoft.detector.DetectorSpec com.sweetsoft.sender.SenderMessageSpec
是否有一条命令可以获取所有可用的测试,而是按【tab
】键?
答案 0 :(得分:9)
尝试从sbt执行show test:definedTests
,该值在我的计算机上输出
sbt:scala-213> show test:definedTests
[info] * Test example.RuleSpec : subclass(false, org.scalatest.Suite)
[info] * Test example.HelloSpec : subclass(false, org.scalatest.Suite)
对definedTests
的检查给出了
inspect test:definedTests
[info] Task: scala.collection.Seq[sbt.TestDefinition]
[info] Description:
[info] Provides the list of defined tests.