Package org.testng.internal
Interface ITestResultNotifier
-
- All Known Implementing Classes:
TestRunner
public interface ITestResultNotifierAn interface defining the notification for @Test results and also \@Configuration results.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddFailedButWithinSuccessPercentageTest(ITestNGMethod tm, ITestResult tr)voidaddFailedTest(ITestNGMethod tm, ITestResult tr)voidaddInvokedMethod(InvokedMethod im)voidaddPassedTest(ITestNGMethod tm, ITestResult tr)voidaddSkippedTest(ITestNGMethod tm, ITestResult tr)java.util.List<IConfigurationListener>getConfigurationListeners()java.util.Set<ITestResult>getFailedTests(ITestNGMethod tm)java.util.Set<ITestResult>getPassedTests(ITestNGMethod tm)java.util.Set<ITestResult>getSkippedTests(ITestNGMethod tm)XmlTestgetTest()java.util.List<ITestListener>getTestListeners()
-
-
-
Method Detail
-
getPassedTests
java.util.Set<ITestResult> getPassedTests(ITestNGMethod tm)
-
getFailedTests
java.util.Set<ITestResult> getFailedTests(ITestNGMethod tm)
-
getSkippedTests
java.util.Set<ITestResult> getSkippedTests(ITestNGMethod tm)
-
addPassedTest
void addPassedTest(ITestNGMethod tm, ITestResult tr)
-
addSkippedTest
void addSkippedTest(ITestNGMethod tm, ITestResult tr)
-
addFailedTest
void addFailedTest(ITestNGMethod tm, ITestResult tr)
-
addFailedButWithinSuccessPercentageTest
void addFailedButWithinSuccessPercentageTest(ITestNGMethod tm, ITestResult tr)
-
addInvokedMethod
void addInvokedMethod(InvokedMethod im)
-
getTest
XmlTest getTest()
-
getTestListeners
java.util.List<ITestListener> getTestListeners()
-
getConfigurationListeners
java.util.List<IConfigurationListener> getConfigurationListeners()
-
-