-
Notifications
You must be signed in to change notification settings - Fork 1k
Comparing changes
Open a pull request
base repository: testng-team/testng
base: 7.5
head repository: testng-team/testng
compare: 7.6.0
Commits on Jan 6, 2022
-
Configuration menu - View commit details
-
Copy full SHA for b263183 - Browse repository at this point
Copy the full SHA b263183View commit details
Commits on Jan 7, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 24cbb56 - Browse repository at this point
Copy the full SHA 24cbb56View commit details -
Remove redundant Parameter implementation
Found a redundant implementation of Parameter with a comment on the class stating that this class can be removed from the codebase after JDK8. Stumbled into it just now and so getting rid of it.
Configuration menu - View commit details
-
Copy full SHA for 03ca3d0 - Browse repository at this point
Copy the full SHA 03ca3d0View commit details -
Closes #2637 * Also upgraded all the dependencies to the latest * Fixed the matrix as well to toggle between 11/16/17
Configuration menu - View commit details
-
Copy full SHA for 51efe0e - Browse repository at this point
Copy the full SHA 51efe0eView commit details
Commits on Jan 10, 2022
-
Move SimpleBaseTest to be Kotlin based
Refactored one of the base classes for all tests To be Kotlin based. Altered the build file to define test compilation Order such that: * Kotlin code gets built first before Groovy test code * Kotlin build output directory gets added to the Classpath of groovy test compilation.
Configuration menu - View commit details
-
Copy full SHA for 55e8e52 - Browse repository at this point
Copy the full SHA 55e8e52View commit details
Commits on Jan 15, 2022
-
Restore testnames when using suites in suite.
Martin Aldrin committedJan 15, 2022 Configuration menu - View commit details
-
Copy full SHA for 5273e25 - Browse repository at this point
Copy the full SHA 5273e25View commit details
Commits on Jan 17, 2022
-
Merge pull request #2712 from martinaldrin/testnames
Restore testnames when using suites in suite.
Configuration menu - View commit details
-
Copy full SHA for 2091b13 - Browse repository at this point
Copy the full SHA 2091b13View commit details
Commits on Jan 18, 2022
-
Configuration menu - View commit details
-
Copy full SHA for fcba70f - Browse repository at this point
Copy the full SHA fcba70fView commit details
Commits on Jan 19, 2022
-
IHookable and IConfigurable callback discrepancy
Closes #2704 Ensure that TestNG reports scenarios wherein User defines callbacks for configurations/test methods But fails to invoke those callbacks explicitly And also fails in shipping test status to a user recognized status (PASS|FAILURE|SKIP)
Configuration menu - View commit details
-
Copy full SHA for a6f1c79 - Browse repository at this point
Copy the full SHA a6f1c79View commit details
Commits on Jan 20, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 523923e - Browse repository at this point
Copy the full SHA 523923eView commit details
Commits on Jan 31, 2022
-
Add additional condition for assertEqualsNoOrder (#2723)
* Add additional condition for assertEqualsNoOrder collection and iterators to also check size
Configuration menu - View commit details
-
Copy full SHA for 331bfbe - Browse repository at this point
Copy the full SHA 331bfbeView commit details
Commits on Feb 18, 2022
-
beforeConfiguration() listener method should be invoked for skipped c…
…onfigurations as well Fixes #2729
Configuration menu - View commit details
-
Copy full SHA for f8783af - Browse repository at this point
Copy the full SHA f8783afView commit details -
Merge pull request #2732 from bj-9527/github2729
beforeConfiguration() listener method should be invoked for skipped configurations as well
Configuration menu - View commit details
-
Copy full SHA for 0438740 - Browse repository at this point
Copy the full SHA 0438740View commit details
Commits on Mar 16, 2022
-
#2734 keep the initial order of listeners (#2737)
* #2734 keep the initial order of listeners We need to run listeners at the same order in which they were declared in @listeners({First.class, Second.class, Third.class})
Configuration menu - View commit details
-
Copy full SHA for e9a6c4f - Browse repository at this point
Copy the full SHA e9a6c4fView commit details
Commits on Mar 22, 2022
-
Configuration menu - View commit details
-
Copy full SHA for f864d45 - Browse repository at this point
Copy the full SHA f864d45View commit details
Commits on Mar 23, 2022
-
Merge pull request #2744 from bj-9527/github2743
SuiteRunner could not be initial by default Configuration
Configuration menu - View commit details
-
Copy full SHA for f4eaf4a - Browse repository at this point
Copy the full SHA f4eaf4aView commit details
Commits on Apr 8, 2022
-
Fix WINDOWS specific failures in CI
* Removed individual file deletion logic and Handled it with deletion of the directory recursively In the Kotlin based base test class.
Configuration menu - View commit details
-
Copy full SHA for a69b313 - Browse repository at this point
Copy the full SHA a69b313View commit details
Commits on Apr 9, 2022
-
Configuration menu - View commit details
-
Copy full SHA for f136315 - Browse repository at this point
Copy the full SHA f136315View commit details
Commits on Apr 13, 2022
-
Enable Dataprovider failures to be considered.
Closes #217 Enable a data provider to propagate its failure And be considered as a test failure. This can be done at an individual data provider level by using the “@dataProvider” annotation’s new attribute “propagateFailureAsTestFailure” This can be done at the entire TestNG level by using the configuration parameter “-propagateDataProviderFailureAsTestFailure true” Also regrouped the data provider test into single test class.
Configuration menu - View commit details
-
Copy full SHA for b5b3e1d - Browse repository at this point
Copy the full SHA b5b3e1dView commit details
Commits on Apr 19, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 19010bd - Browse repository at this point
Copy the full SHA 19010bdView commit details
Commits on Apr 21, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 880801e - Browse repository at this point
Copy the full SHA 880801eView commit details -
DataProvider: possibility to unload dataprovider class, when done wit…
…h it With current Data providers implementation, it's code will stick around in method area (JVM spec $2.5.4) for the entire test run. By specifying dataprovider class with it's full qualified name, and by using new custom classloader to load it, when needed, JVM gets a chance to unload dataprovider class, when we're done with it. Testing dataprovider class unload is performed by analysing memory dumps. Also, there is a test(comparePerformanceAgainstCsvFiles) to measure performance of data as code approach against common data approch, where data is stored in csv files.
Configuration menu - View commit details
-
Copy full SHA for aae0724 - Browse repository at this point
Copy the full SHA aae0724View commit details
Commits on Apr 24, 2022
-
fix possibilty that AfterGroups method is invoked before all tests
for defined groups are invoked, in case when AfterGrouos method has multiple groups defined
Configuration menu - View commit details
-
Copy full SHA for 43c38c2 - Browse repository at this point
Copy the full SHA 43c38c2View commit details
Commits on Apr 25, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 561f183 - Browse repository at this point
Copy the full SHA 561f183View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6fd891f - Browse repository at this point
Copy the full SHA 6fd891fView commit details
Commits on Apr 27, 2022
-
Merge pull request #2753 from velma/fix-aftergroups
fix possibilty that AfterGroups method is invoked before all tests
Configuration menu - View commit details
-
Copy full SHA for 28d0fd4 - Browse repository at this point
Copy the full SHA 28d0fd4View commit details
Commits on Apr 28, 2022
-
Configuration menu - View commit details
-
Copy full SHA for ec49a13 - Browse repository at this point
Copy the full SHA ec49a13View commit details
Commits on Apr 29, 2022
-
Upgrade dependencies, Upgrade to JDK17 (#2747)
* conversion to java17, dependency updates Co-authored-by: Hendrik Duerkop <hendrik.duerkop@tchibo.de>
Configuration menu - View commit details
-
Copy full SHA for e3fe52a - Browse repository at this point
Copy the full SHA e3fe52aView commit details
Commits on May 9, 2022
-
Configuration menu - View commit details
-
Copy full SHA for b937a1d - Browse repository at this point
Copy the full SHA b937a1dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6b2e466 - Browse repository at this point
Copy the full SHA 6b2e466View commit details
Commits on May 13, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 2be448a - Browse repository at this point
Copy the full SHA 2be448aView commit details
Commits on May 15, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 3b664ec - Browse repository at this point
Copy the full SHA 3b664ecView commit details -
Configuration menu - View commit details
-
Copy full SHA for d190ade - Browse repository at this point
Copy the full SHA d190adeView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 7.5...7.6.0