Home
last modified time | relevance | path

Searched refs:testConstructor (Results 1 – 25 of 109) sorted by relevance

12345

/external/testng/src/test/java/test/annotationtransformer/
DMyParamTransformer.java15 Constructor testConstructor, Method testMethod) { in transform() argument
16 if (!onlyOneNonNull(testClass, testConstructor, testMethod)) { in transform()
21 …public static boolean onlyOneNonNull(Class testClass, Constructor testConstructor, Method testMeth… in onlyOneNonNull() argument
22 return ((testClass != null && testConstructor == null && testMethod == null) || in onlyOneNonNull()
23 (testClass == null && testConstructor != null && testMethod == null) || in onlyOneNonNull()
24 (testClass == null && testConstructor == null && testMethod != null) ); in onlyOneNonNull()
DConfigurationTransformer.java16 Constructor testConstructor, Method testMethod) in transform() argument
22 Constructor testConstructor, Method testMethod) in transform() argument
DDataProviderTransformer.java16 Constructor testConstructor, Method testMethod) in transform() argument
27 Constructor testConstructor, Method testMethod) in transform() argument
DFactoryTransformer.java16 Constructor testConstructor, Method testMethod) in transform() argument
26 Constructor testConstructor, Method testMethod) in transform() argument
DMyListenerTransformer.java22 Constructor testConstructor, Method testMethod) {} in transform() argument
31 public void transform(ITestAnnotation annotation, Class testClass, Constructor testConstructor, in transform() argument
DMyTimeOutTransformer.java13 Constructor testConstructor, Method testMethod) in transform() argument
DAnnotationTransformerInTestngXml.java17 Constructor testConstructor, Method testMethod) { in transform() argument
DAnnotationTransformerInvocationCountTest.java22 Constructor testConstructor, Method testMethod) { in transform() argument
DMyTransformer.java17 Constructor testConstructor, Method testMethod) { in transform() argument
/external/v8/test/mjsunit/
Ddebug-backtrace-text.js61 testConstructor = false; // Flag to control which part of the test is run.
77 if (!testConstructor) {
116 testConstructor = true;
Dstack-traces.js81 function testConstructor() { function
276 testTrace("testConstructor", testConstructor, ["new Plonk"]);
/external/testng/src/main/java/org/testng/internal/annotations/
DJDK15AnnotationFinder.java138 Constructor<?> testConstructor, Method testMethod) { in transform() argument
143 m_transformer.transform((ITestAnnotation) a, testClass, testConstructor, testMethod); in transform() local
154 transformer2.transform(configuration,testClass, testConstructor, testMethod); in transform()
210 Constructor<?> testConstructor, Method testMethod, Pair<Annotation, ?> p) { in findAnnotation() argument
219 transform(result, testClass, testConstructor, testMethod); in findAnnotation()
DDefaultAnnotationTransformer.java15 Constructor testConstructor, Method testMethod) in transform() argument
/external/testng/src/main/java/org/testng/
DIAnnotationTransformer.java29 Constructor testConstructor, Method testMethod); in transform() argument
DIAnnotationTransformer2.java31 Constructor testConstructor, Method testMethod); in transform() argument
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
DRowSetEventTest.java25 public void testConstructor() { in testConstructor() method in RowSetEventTest
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DLayoutParamsTest.java14 public void testConstructor() throws Exception { in testConstructor() method in LayoutParamsTest
DPairTest.java16 public void testConstructor() throws Exception { in testConstructor() method in PairTest
DCameraSizeTest.java26 public void testConstructor() throws Exception { in testConstructor() method in CameraSizeTest
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
DMockDateBeanConstructorTest.java26 public void testConstructor() { in testConstructor() method in MockDateBeanConstructorTest
DBigDecimalBeanConstructorTest.java37 public void testConstructor() { in testConstructor() method in BigDecimalBeanConstructorTest
DIncompleteBeanConstructorTest.java36 public void testConstructor() { in testConstructor() method in IncompleteBeanConstructorTest
/external/testng/src/test/java/test/tmp/
DAnnotationTransformer.java18 Constructor testConstructor, Method testMethod) in transform() argument
/external/antlr/antlr-3.4/runtime/ActionScript/project/test/org/antlr/runtime/test/
DTestBitSet.as8 public function testConstructor():void { method in org.antlr.runtime.test.TestBitSet
/external/testng/src/test/java/test/listeners/
DSuiteListener2.java35 …public void transform(ITestAnnotation annotation, Class testClass, Constructor testConstructor, Me… in transform() argument

12345