Home
last modified time | relevance | path

Searched refs:testAnnotation (Results 1 – 6 of 6) sorted by relevance

/external/testng/src/main/java/org/testng/internal/
DTestNGMethod.java95 ITestAnnotation testAnnotation = in init() local
98 if (testAnnotation == null) { in init()
100testAnnotation = AnnotationHelper.findTest(getAnnotationFinder(), m_method.getDeclaringClass()); in init()
103 if (null != testAnnotation) { in init()
104 setTimeOut(testAnnotation.getTimeOut()); in init()
105 m_successPercentage = testAnnotation.getSuccessPercentage(); in init()
107 setInvocationCount(testAnnotation.getInvocationCount()); in init()
108 m_totalInvocationCount = testAnnotation.getInvocationCount(); in init()
109 setThreadPoolSize(testAnnotation.getThreadPoolSize()); in init()
110 setAlwaysRun(testAnnotation.getAlwaysRun()); in init()
[all …]
DRegexpExpectedExceptionsHolder.java58 ITestAnnotation testAnnotation = finder.findAnnotation(method, ITestAnnotation.class); in getRegExp() local
59 if (testAnnotation != null) { in getRegExp()
60 return testAnnotation.getExpectedExceptionsMessageRegExp(); in getRegExp()
DExpectedExceptionsHolder.java35 ITestAnnotation testAnnotation = finder.findAnnotation(method, ITestAnnotation.class); in findExpectedClasses() local
36 if (testAnnotation != null) { in findExpectedClasses()
37 return testAnnotation.getExpectedExceptions(); in findExpectedClasses()
/external/r8/src/test/examples/multidex003/
DTestAnnotationResolution.java10 public void testAnnotation() throws Exception { in testAnnotation() method in TestAnnotationResolution
/external/testng/src/main/java/org/testng/reporters/
DXMLSuiteResultWriter.java225 Test testAnnotation; in getTestResultAttributes() local
227 testAnnotation = cm.getMethod().getAnnotation(Test.class); in getTestResultAttributes()
228 if (testAnnotation != null) { in getTestResultAttributes()
229 String dataProvider = testAnnotation.dataProvider(); in getTestResultAttributes()
/external/guice/extensions/multibindings/test/com/google/inject/multibindings/
DProvidesIntoTest.java49 public void testAnnotation() throws Exception { in testAnnotation() method in ProvidesIntoTest