Searched defs:TestClass (Results 1 - 12 of 12) sorted by relevance

/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/pkg1/
H A DTestClass.java24 * as the TestClass in o.a.h.l.tests.pkg2
26 public class TestClass implements Serializable { class in inherits:Serializable
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/pkg2/
H A DTestClass.java24 * as the TestClass in o.a.h.l.tests.pkg1
26 public class TestClass implements Serializable { class in inherits:Serializable
/external/stlport/test/eh/
H A DTestClass.h2 TestClass.h
15 SUMMARY: TestClass simulates a class that uses resources. It is designed to
32 class TestClass class
35 inline TestClass();
36 inline TestClass( int value );
37 inline TestClass( const TestClass& rhs );
38 inline ~TestClass();
40 inline TestClass& operator=( const TestClass
69 __MSL_FIX_ITERATORS__(TestClass); variable
70 __MSL_FIX_ITERATORS__(const TestClass); variable
87 inline TestClass::TestClass() function in class:TestClass
92 inline TestClass::TestClass( int value ) function in class:TestClass
97 inline TestClass::TestClass( const TestClass& rhs ) function in class:TestClass
[all...]
/external/javassist/src/test/test/javassist/proxy/
H A DProxyFactoryCompatibilityTest.java47 factory.setSuperclass(TestClass.class);
54 TestClass proxy1 = (TestClass)proxyClass1.newInstance();
61 TestClass proxy2 = (TestClass)proxyClass2.newInstance();
71 factory.setSuperclass(TestClass.class);
79 TestClass proxy3 = (TestClass)proxyClass3.newInstance();
85 TestClass proxy4 = (TestClass)proxyClass
95 public static class TestClass { class in class:ProxyFactoryCompatibilityTest
[all...]
H A DProxySerializationTest.java21 factory.setSuperclass(TestClass.class);
34 TestClass proxy = (TestClass)constructor.newInstance(new Object[] {name});
43 TestClass newProxy = (TestClass)in.readObject();
61 TestClass proxy = (TestClass)constructor.newInstance(new Object[] {name});
70 TestClass newProxy = (TestClass)in.readObject();
128 public static class TestClass implement class in class:ProxySerializationTest
132 public TestClass() method in class:ProxySerializationTest.TestClass
136 public TestClass(String name) method in class:ProxySerializationTest.TestClass
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
H A DAccessibleObjectTest.java24 public class TestClass { class in class:AccessibleObjectTest
34 AccessibleObject ao = TestClass.class.getField("aField");
49 AccessibleObject ao = TestClass.class.getField("aField");
/external/android-mock/tests/com/google/android/testing/mocking/
H A DConstructorCreationTests.java42 public static class TestClass { class in class:ConstructorCreationTests
47 public TestClass(Foo foo) { method in class:ConstructorCreationTests.TestClass
51 public TestClass(Foo foo, Bar bar) { method in class:ConstructorCreationTests.TestClass
55 public TestClass(int v1) { method in class:ConstructorCreationTests.TestClass
59 public TestClass(int v1, float v2) { method in class:ConstructorCreationTests.TestClass
65 public TestClass(int v1, double v2) { method in class:ConstructorCreationTests.TestClass
73 Constructor<TestClass> constructor =
74 AndroidMock.getConstructorFor(TestClass.class, args);
80 Constructor<TestClass> constructor =
81 AndroidMock.getConstructorFor(TestClass
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
H A DClassTest.java60 public static class TestClass { class in class:ClassTest
83 public TestClass() { method in class:ClassTest.TestClass
87 private TestClass(Object o) { method in class:ClassTest.TestClass
91 public static class SubTestClass extends TestClass {
233 TestClass.class.getConstructor(new Class[0]);
235 TestClass.class.getConstructor(Object.class);
246 Constructor[] c = TestClass.class.getConstructors();
261 Constructor<TestClass> c = TestClass.class.getDeclaredConstructor(new Class[0]);
263 c = TestClass
[all...]
/external/gtest/include/gtest/internal/
H A Dgtest-internal.h543 template <class TestClass>
546 virtual Test* CreateTest() { return new TestClass; }
673 typedef typename GTEST_BIND_(TestSel, Type) TestClass; typedef
684 TestClass::SetUpTestCase,
685 TestClass::TearDownTestCase,
686 new TestFactoryImpl<TestClass>);
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-internal.h542 template <class TestClass>
545 virtual Test* CreateTest() { return new TestClass; }
672 typedef typename GTEST_BIND_(TestSel, Type) TestClass; typedef
683 TestClass::SetUpTestCase,
684 TestClass::TearDownTestCase,
685 new TestFactoryImpl<TestClass>);
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-internal.h520 template <class TestClass>
523 virtual Test* CreateTest() { return new TestClass; }
644 typedef typename GTEST_BIND_(TestSel, Type) TestClass; typedef
655 TestClass::SetUpTestCase,
656 TestClass::TearDownTestCase,
657 new TestFactoryImpl<TestClass>);
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h546 template <class TestClass>
549 virtual Test* CreateTest() { return new TestClass; }
670 typedef typename GTEST_BIND_(TestSel, Type) TestClass; typedef
681 TestClass::SetUpTestCase,
682 TestClass::TearDownTestCase,
683 new TestFactoryImpl<TestClass>);

Completed in 1263 milliseconds