开始时候 运行测试用例发现只有部分运行了,始终找不到原因
原来在单元测试时候默认 规范可以使用三种,但是网上找到的都是互相抄袭地错误方法
JUnit 4以及TestNG。
在默认情况下,maven-surefire-plugin的test目标会自动执行测试源码路径
(默认为src/test/java/)下所有符合一组命名模式的测试类。这组模式为:
**/Test*.java:任何子目录下所有命名以Test开关的Java类。
**/*TestCase.java:任何子目录下所有命名以TestCase结尾的Java类。
**/*Test.java:任何子目录下所有命名以Test结尾的Java类。
但是 Maven Surefire 只支持一种: 如果需要其他规则要手动写到配置文件里
POJO tests look very much like JUnit or TestNG tests, though they do not require dependencies on these artifacts. A test class should be named **/*Test and should contain test* methods which will each be executed by Surefire.
https://maven.apache.org/surefire/maven-surefire-plugin/examples/pojo-test.html
另外有返回值的方法, TestNG 需要使用 <suite allow-return-values=”true”> 配置,默认会跳过