blob: dc2c4a44c75215ae25937927f5a007a7b59d6a86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# if true, then run JUnit tests via leaf tests
# else use junit.rootSuites
junit.leaves=false
# define the root suite for for each module testsrc/
junit.rootSuites=**/*ModuleTests.java
# define leaf tests for each module testsrc/
junit.includes=**/*Tests.java,**/*TestCase.java
junit.excludes=**/DocumentParserTest.java,\
**/CommandTestCase.java,\
**/VerifyWeaveTestCase.java,\
**/KnownfailuresTests.java,\
**/KnownLimitationsTests.java,\
**/PureJavaTests.java,\
**/AbstractWorldTestCase.java,\
**/WeaveTestCase.java
|