testng icon indicating copy to clipboard operation
testng copied to clipboard

TestNG testing framework

Results 173 testng issues
Sort by recently updated
recently updated
newest added

### TestNG Version > Note: only the latest version is supported 7.5.x/7.6.x ### Expected behavior org.testng.internal.Version.VERSION should be correct ### Actual behavior org.testng.internal.Version.VERSION = "[WORKING]" ### Is the issue reproducible...

### TestNG Version > Note: only the latest version is supported ### Expected behavior The expectation is to get test using `getXmlTest()` method in Listeners such as `IInvokedMethodListener` and `ITestListener`...

### TestNG Version latest ### Expected behavior My suite XML file has 3 test cases. After running the suite, all the tests are having passed status. test - 1 test...

Need: sample

### TestNG Version > Note: only the latest version is supported n/a ### Expected behavior The Javadoc at , referred to by the web site, should be valid. ### Actual...

### TestNG Version 7.6.1 ### Description Not all of the test case classes are executed when the classes aren't ordered by alphabetical order, one class extends another class and the...

Issue: Confirmed
testng-api

### TestNG Version 7.6.1 ### Expected behavior `IInvokedMethodListener.afterInvocation(method, result)` should receive a result with the status `FAILURE`. ### Actual behavior The status is `SUCCESS` and `getThrowable()` is set to a...

### TestNG Version 7.5 ### Expected behavior TestNG runs tests. ### Actual behavior TestNG throws an exception: ``` [ERROR] java.lang.AssertionError: Couldn't find resource: jquery.min.js [ERROR] at [email protected]/org.testng.reporters.jq.Main.generateReport(Main.java:91) [ERROR] at [email protected]/org.testng.TestNG.generateReports(TestNG.java:1127)...

Feature: report
Need: sample

### TestNG Version 7.6.1 ### Expected behavior There should be a way to define custom annotation that groups several existing annotations with predefined values. For instance, instead of `@Test(groups={"Database"}, timeOut...

### TestNG Version 7.6.1 ### Expected behavior It would be nice if there was a way to declare "group" and its dependencies. For instance, something like ```java interface TestGroups {...

### TestNG Version 7.6.1 ### Expected behavior TestNG should understand and honour group dependencies even when they are not listed explicitly at Test level. ``` setup: FIRST A: first B:...