Home
last modified time | relevance | path

Searched refs:ConstructorTestHelper (Results 1 – 2 of 2) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
DConstructorTest.java55 static class ConstructorTestHelper extends Object { class in ConstructorTest
62 public ConstructorTestHelper() throws IndexOutOfBoundsException { in ConstructorTestHelper() method in ConstructorTest.ConstructorTestHelper
66 public ConstructorTestHelper( in ConstructorTestHelper() method in ConstructorTest.ConstructorTestHelper
73 public ConstructorTestHelper(String... x) { in ConstructorTestHelper() method in ConstructorTest.ConstructorTestHelper
76 private ConstructorTestHelper(int a) { in ConstructorTestHelper() method in ConstructorTest.ConstructorTestHelper
79 protected ConstructorTestHelper(long a) { in ConstructorTestHelper() method in ConstructorTest.ConstructorTestHelper
106 Constructor<ConstructorTestHelper> ctor1 = ConstructorTestHelper.class in test_getParameterAnnotations()
126 Constructor<ConstructorTestHelper> ctor1 = null; in test_getDeclaredAnnotations()
127 ctor1 = ConstructorTestHelper.class.getConstructor(new Class[0]); in test_getDeclaredAnnotations()
142 Constructor<ConstructorTestHelper> varArgCtor = ConstructorTestHelper.class in test_isVarArgs()
[all …]
/libcore/luni/src/test/java/libcore/java/lang/reflect/
DConstructorTest.java26 Constructor<?> constructor = ConstructorTestHelper.class.getConstructor(new Class[0]); in test_getExceptionTypes()
39 Constructor<?> constructor = ConstructorTestHelper.class.getConstructor(expectedParameters); in test_getParameterTypes()
43 constructor = ConstructorTestHelper.class.getConstructor(expectedParameters); in test_getParameterTypes()
56 Constructor<?> constructor = ConstructorTestHelper.class.getConstructor(expectedParameters); in test_getParameterCount()
60 constructor = ConstructorTestHelper.class.getConstructor(expectedParameters); in test_getParameterCount()
67 Constructor<?> constructor = ConstructorTestHelper.class.getConstructor(expectedParameters); in test_getParameters()
71 constructor = ConstructorTestHelper.class.getConstructor(expectedParameters); in test_getParameters()
87 Constructor<?> constructor = ConstructorTestHelper.class.getConstructor((Class[]) null); in testGetConstructorWithNullArgumentsArray()
93 ConstructorTestHelper.class.getConstructor(new Class[] { null }); in testGetConstructorWithNullArgument()
101 ConstructorTestHelper.class.getConstructor(Object.class, Object.class); in testGetConstructorReturnsDoesNotReturnPrivateConstructor()
[all …]