MarkLogic 单元测试未 运行 任何测试

MarkLogic unit test not running any tests

我认为设置 MarkLogic 单元测试是个好主意,所以我一直在尽我所能地关注 unit-test-project。一切似乎都正常,但没有执行任何单元测试。我已将四个单元测试复制到 src/test/ml-modules/root/suites/My Tests,将一个模块复制到 src/main/ml-modules/root/。一切都正确部署。但是 运行 单元测试给了我:

$ gradle mlUnitTest

> Task :mlUnitTest
Constructing DatabaseClient that will connect to port: 8021
Run teardown scripts: true
Run suite teardown scripts: true
Run code coverage: false
Running all suites...
Done running all suites; time: 1791ms


0 tests completed, 0 failed

单元测试 UI 在浏览器中加载,但它也不显示任何测试。

这是我的 build.gradle file:

buildscript {
  repositories {
    jcenter()
    mavenLocal()
  }
  dependencies {
    classpath "com.marklogic:marklogic-unit-test-client:1.0.0"
    classpath "com.marklogic:ml-gradle:4.1.0"
  }
}
plugins { id "com.marklogic.ml-gradle" version "4.1.0" }
repositories {
  jcenter()
}
dependencies {
  mlBundle "com.marklogic:marklogic-unit-test-modules:1.0.0"
}

gradle.properties

mlAppName=unitTestApp
mlHost=localhost
mlUsername=admin
mlPassword=*****
mlRestPort=8020
mlTestRestPort=8021
mlModulePaths=src/main/ml-modules,src/test/ml-modules

我正在使用 MarkLogic 10,64 位 Linux,ml-gradle 4.0

啊。看起来测试套件应该在

中的项目目录下
src/test/ml-modules/root/test/suites/SuiteName

我把 suites 放在 root 下,错过了第二个 test 目录。