我有一些想要运行的 JUnit 测试。
我sbt
所要做的就是添加这个依赖:
"com.novocode" % "junit-interface" % "0.11" % "test"
根据Mill 文档,您必须添加自定义框架,例如:
def testFrameworks = Seq("org.scalatest.tools.Framework", "WHAT GOES HERE?")
我需要做什么才能让我的 JUnit 测试正常工作?
在写这个问题时,我想通了:
在build.sh
你有:
ivy"com.novocode:junit-interface:0.11"
com.novocode.junit.JUnitFramework
然后整个组件看起来:
object myModule extends ScalaModule {
def scalaVersion = "2.12.8"
object test extends Tests {
override def ivyDeps = Agg(
ivy"org.scalatest::scalatest:3.0.5",
ivy"com.novocode:junit-interface:0.11"
)
def testFrameworks = Seq("org.scalatest.tools.Framework",
"com.novocode.junit.JUnitFramework")
}
}