HomeSort by relevance Sort by last modified time
    Searched defs:TestClass (Results 26 - 50 of 50) sorted by null

12

  /external/javassist/src/test/test/javassist/proxy/
ProxySerializationTest.java 21 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 implements Serializabl
    [all...]
ProxyFactoryCompatibilityTest.java 47 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)proxyClass4.newInstance()
    [all...]
  /external/junit/src/org/junit/runners/model/
TestClass.java 21 public class TestClass {
29 * Creates a {@code TestClass} wrapping {@code klass}. Each time this
32 * try to share instances of {@code TestClass} where possible.
34 public TestClass(Class<?> klass) {
94 private List<Class<?>> getSuperClasses(Class<?> testClass) {
96 Class<?> current= testClass;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ClassTest.java 52 public static class TestClass {
75 public TestClass() {
79 private TestClass(Object o) {
83 public static class SubTestClass extends TestClass {
226 TestClass.class.getConstructor(new Class[0]);
228 TestClass.class.getConstructor(Object.class);
239 Constructor[] c = TestClass.class.getConstructors();
254 Constructor<TestClass> c = TestClass.class.getDeclaredConstructor(new Class[0]);
256 c = TestClass.class.getDeclaredConstructor(Object.class)
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
ToStringHelperTest.java 49 String toTest = Objects.toStringHelper(new TestClass()).toString();
50 assertEquals("TestClass{}", toTest);
54 String toTest = Objects.toStringHelper(new TestClass()).toString();
71 String toTest = Objects.toStringHelper(TestClass.class).toString();
72 assertEquals("TestClass{}", toTest);
76 String toTest = Objects.toStringHelper(TestClass.class).toString();
154 String toTest = Objects.toStringHelper(new TestClass())
157 assertEquals("TestClass{field1=Hello}", toTest);
162 String toTest = Objects.toStringHelper(new TestClass())
165 assertEquals("TestClass{field1=42}", toTest)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
AccessibleObjectTest.java 33 public class TestClass {
40 public class SubTestClass extends TestClass{
96 AccessibleObject ao = TestClass.class.getField("aField");
112 AccessibleObject ao = TestClass.class.getField("aField");
127 AccessibleObject ao = TestClass.class.getField("aField");
FieldTest.java 44 public class TestClass {
    [all...]
  /external/clang/test/CodeGenCXX/
debug-info-use-after-free.cpp 41 typename TestSel::template Bind < Type >::type TestClass;
  /external/protobuf/gtest/include/gtest/internal/
gtest-internal.h 542 template <class TestClass>
545 virtual Test* CreateTest() { return new TestClass; }
672 typedef typename GTEST_BIND_(TestSel, Type) TestClass;
683 TestClass::SetUpTestCase,
684 TestClass::TearDownTestCase,
685 new TestFactoryImpl<TestClass>);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_scope.py 556 class TestClass:
560 adaptgetter("foo", TestClass, (1, ""))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_scope.py 556 class TestClass:
560 adaptgetter("foo", TestClass, (1, ""))
  /cts/tools/utils/
DescriptionGenerator.java 144 xmlGenerator.addTestClass(new TestClass(clazz, ctsExpectationStore, architecture));
279 void addTestClass(TestClass tc) {
368 void appendSuiteToElement(Node elem, TestClass testSuite) {
482 void appendSuiteToElementImpl(Node elem, TestClass testSuite) {
507 static class TestClass {
517 TestClass(String name, Collection<TestMethod> cases) {
523 * Construct a TestClass object using ClassDoc.
527 TestClass(ClassDoc clazz, ExpectationStore expectationStore, String architecture) {
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-internal.h 451 template <class TestClass>
454 virtual Test* CreateTest() { return new TestClass; }
576 typedef typename GTEST_BIND_(TestSel, Type) TestClass;
587 TestClass::SetUpTestCase,
588 TestClass::TearDownTestCase,
589 new TestFactoryImpl<TestClass>);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-internal.h 526 template <class TestClass>
529 virtual Test* CreateTest() { return new TestClass; }
650 typedef typename GTEST_BIND_(TestSel, Type) TestClass;
661 TestClass::SetUpTestCase,
662 TestClass::TearDownTestCase,
663 new TestFactoryImpl<TestClass>);
    [all...]
  /external/gtest/include/gtest/internal/
gtest-internal.h 451 template <class TestClass>
454 virtual Test* CreateTest() { return new TestClass; }
576 typedef typename GTEST_BIND_(TestSel, Type) TestClass;
587 TestClass::SetUpTestCase,
588 TestClass::TearDownTestCase,
589 new TestFactoryImpl<TestClass>);
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h 555 template <class TestClass>
558 virtual Test* CreateTest() { return new TestClass; }
679 typedef typename GTEST_BIND_(TestSel, Type) TestClass;
690 TestClass::SetUpTestCase,
691 TestClass::TearDownTestCase,
692 new TestFactoryImpl<TestClass>);
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-internal.h 526 template <class TestClass>
529 virtual Test* CreateTest() { return new TestClass; }
650 typedef typename GTEST_BIND_(TestSel, Type) TestClass;
661 TestClass::SetUpTestCase,
662 TestClass::TearDownTestCase,
663 new TestFactoryImpl<TestClass>);
    [all...]
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-internal.h 440 template <class TestClass>
443 virtual Test* CreateTest() { return new TestClass; }
565 typedef typename GTEST_BIND_(TestSel, Type) TestClass;
576 TestClass::SetUpTestCase,
577 TestClass::TearDownTestCase,
578 new TestFactoryImpl<TestClass>);
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldClassTest.java 51 final String classNameLinkageError = packageName + ".TestClass";
159 public static class TestClass {
182 public TestClass() {
186 private TestClass(Object o) {
190 public static class SubTestClass extends TestClass {
662 TestClass.class.getDeclaredConstructor(String.class);
671 TestClass.class.getDeclaredField(null);
678 TestClass.class.getDeclaredField("NonExistentField");
687 TestClass.class.getDeclaredMethod(null, new Class[0]);
694 TestClass.class.getDeclaredMethod("NonExistentMethod", new Class[0])
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/include/gtest/
gtest.h     [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest.h     [all...]
  /external/owasp/sanitizer/lib/junit/
junit-dep.jar 
junit.jar 
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/include/gtest/
gtest.h     [all...]
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 

Completed in 734 milliseconds

12