Searched refs:testAnnotation (Results 1 – 5 of 5) sorted by relevance
95 ITestAnnotation testAnnotation = in init() local98 if (testAnnotation == null) { in init()100 … testAnnotation = 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 …]
58 ITestAnnotation testAnnotation = finder.findAnnotation(method, ITestAnnotation.class); in getRegExp() local59 if (testAnnotation != null) { in getRegExp()60 return testAnnotation.getExpectedExceptionsMessageRegExp(); in getRegExp()
35 ITestAnnotation testAnnotation = finder.findAnnotation(method, ITestAnnotation.class); in findExpectedClasses() local36 if (testAnnotation != null) { in findExpectedClasses()37 return testAnnotation.getExpectedExceptions(); in findExpectedClasses()
225 Test testAnnotation; in getTestResultAttributes() local227 testAnnotation = cm.getMethod().getAnnotation(Test.class); in getTestResultAttributes()228 if (testAnnotation != null) { in getTestResultAttributes()229 String dataProvider = testAnnotation.dataProvider(); in getTestResultAttributes()
49 public void testAnnotation() throws Exception { in testAnnotation() method in ProvidesIntoTest