File tree 4 files changed +3
-3
lines changed
main/java/org/testng/xml/internal
4 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ Fixed: GITHUB-3122: Update JCommander to 1.83 (Antoine Dessaigne)
6
6
Fixed: GITHUB-3135: assertEquals on arrays - Failure message is missing information about the array index when an array element is unexpectedly null or non-null (Albert Choi)
7
7
Fixed: GITHUB-3140: assertEqualsDeep on Sets - Deep comparison was using the wrong expected value
8
8
Fixed: GITHUB-3189: Incorrect number of ignored tests displayed in the XML results
9
+ Fixed: GITHUB-3196: support to execlude somes 'test' in option of command line
9
10
10
11
7.10.2
11
12
Fixed: GITHUB-3117: ListenerComparator doesn't work (Krishnan Mahadevan)
Original file line number Diff line number Diff line change 4
4
[ ![ Sonarqube Quality Gate Status] ( https://sonarcloud.io/api/project_badges/measure?project=org.testng%3Atestng&metric=alert_status )] ( https://sonarcloud.io/dashboard?id=org.testng%3Atestng )
5
5
6
6
Documentation available at [ TestNG's main web site] ( https://testng.org ) . Visit [ TestNG Documentation's GitHub Repo] ( https://github.com/testng-team/testng-team.github.io ) to contribute to it.
7
- ###
8
7
### Release Notes
9
8
* [ 7.10.0] ( https://groups.google.com/g/testng-users/c/6DmFaKUjIxY )
10
9
* [ 7.9.0] ( https://groups.google.com/g/testng-users/c/nN7LkuZWO48 )
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ private XmlSuite cloneIfSuiteContainTestsWithNamesMatchingAny(XmlSuite suite) {
109
109
tests .add (xt );
110
110
matchedTestNames .add (xt .getName ());
111
111
matchedTests .add (xt );
112
- }else {
112
+ } else {
113
113
missedTestNames .add (xt .getName ());
114
114
missedTests .add (xt );
115
115
}
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ public void testNameMatchesAny() {
21
21
}
22
22
23
23
@ Test (description = "GITHUB-3196" )
24
- public void testNameMatchesAnyWithRegex (){
24
+ public void testNameMatchesAnyWithRegex () {
25
25
XmlSuite xmlSuite = createDummySuiteWithTestNamesAs ("test1" );
26
26
XmlTest xmlTest = xmlSuite .getTests ().get (0 );
27
27
assertThat (xmlTest .nameMatchesAny (Collections .singletonList ("^(test1$).*" ))).isTrue ();
You can’t perform that action at this time.
0 commit comments