如何使用maven插件使用JUnit测试运行Scalatest

我正在使用
scala
java maven项目编写一些测试.我想用maven插件运行这些测试,但我也希望其余的JUnit测试也能运行.

问题是,根据
this guidelines我必须禁用surefire.

我有运行scalatest和junit测试的解决方案吗? 最佳答案 您可以使用maven surefire插件运行您的scalatests.您只需指定通过注释使用JUnitRunner来运行您的scalatest.

@RunWith(classOf[JUnitRunner])
class MyTest extends FunSuite with Matchers {
  test("foobar") {
    true should be(true)
  }
}
点赞