-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
66 lines (55 loc) · 1.42 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
Group Hiearchy:
AllTests StandaloneTests
______________/ | \_________
/ | \
ATests BTests CTests
____/ | \______ ____/ /
/ | \ / /
AaTests AbTests AbTests /
\_____________ _____________/
\ /
AbCTests
Tests:
*test output* *groups*
onlnyInAllTest AllTests
ATest ATests
BTest BTests
CTest CTests
ABTest AbTests
ABTest2 BTests ATests
AaTest AaTests
AbTest AbTests
AbCTest AbCTests
standaloneTest StandaloneTests
everytimeTest
Default tests with category: ATests
$ mvn verify
ATest
AaTest
AbTest
ABTest
ABTest2
AbCTest
$ mvn verify -Dtest.group="ninja.abhilasha.test.category.ATests && ninja.abhilasha.test.category.BTests"
ABTest
ABTest2
$ mvn verify -Dtest.group='ninja.abhilasha.test.category.AllTests && !ninja.abhilasha.test.category.CTests'
onlnyInAllTest
ATest
AaTest
AbTest
ABTest
ABTest2
BTest
$ mvn verify -Dtest.group='ninja.abhilasha.test.category.CTests || !ninja.abhilasha.test.category.ATests'
CTest
AbCTest
everytimeTest
onlyInAllTest
BTest
$ mvn verify -Dtest.exgroup="ninja.abhilasha.test.category.CTests"
ATest
AaTest
AbTest
ABTest
ABTest2