Searched refs:testAnnotation (Results 1 – 9 of 9) 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()
78 JavaFileObject testAnnotation = in succeeds_ComponentProcessorWaitsForAnnotationsWithgeneratesstinginput() local88 .compile(testAnnotation); in succeeds_ComponentProcessorWaitsForAnnotationsWithgeneratesstinginput()
237 JavaFileObject testAnnotation = in testWrongTypeCollection() local272 .compile(testSource, testAnnotation); in testWrongTypeCollection()
83 OtherAnnotation testAnnotation() default @OtherAnnotation(foo = 23, bar = "baz"); in testAnnotation() method
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()
47 public void testAnnotation() throws Exception { in testAnnotation() method in ProvidesIntoTest
14 public void testAnnotation() throws Exception { in testAnnotation() method in JvstTest3