HomeSort by relevance Sort by last modified time
    Searched defs:TestClass (Results 1 - 25 of 27) sorted by null

1 2

  /libcore/luni/src/test/resources/org/apache/harmony/luni/tests/java/lang/
illegalClasses.jar 
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/pkg1/
TestClass.java 24 * as the TestClass in o.a.h.l.tests.pkg2
26 public class TestClass implements Serializable {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/pkg2/
TestClass.java 24 * as the TestClass in o.a.h.l.tests.pkg1
26 public class TestClass implements Serializable {
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/pkg1/
TestClass.java 24 * as the TestClass in o.a.h.l.tests.pkg2
26 public class TestClass implements Serializable {
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/pkg2/
TestClass.java 24 * as the TestClass in o.a.h.l.tests.pkg1
26 public class TestClass implements Serializable {
  /external/stlport/test/eh/
TestClass.h 2 TestClass.h
15 SUMMARY: TestClass simulates a class that uses resources. It is designed to
32 class TestClass
35 inline TestClass();
36 inline TestClass( int value );
37 inline TestClass( const TestClass& rhs );
38 inline ~TestClass();
40 inline TestClass& operator=( const TestClass& rhs )
    [all...]
  /libcore/support/src/test/java/tests/resources/
illegalClasses.jar 
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_static/
TestClass.java 19 public class TestClass {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_static_range/
TestClass.java 19 public class TestClass {
  /external/junit/src/org/junit/internal/runners/
TestClass.java 22 public class TestClass {
25 public TestClass(Class<?> klass) {
80 private List<Class<?>> getSuperClasses(Class< ?> testClass) {
82 Class<?> current= testClass;
  /external/android-mock/tests/com/google/android/testing/mocking/
ConstructorCreationTests.java 42 public static class TestClass {
47 public TestClass(Foo foo) {
51 public TestClass(Foo foo, Bar bar) {
55 public TestClass(int v1) {
59 public TestClass(int v1, float v2) {
65 public TestClass(int v1, double v2) {
73 Constructor<TestClass> constructor =
74 AndroidMock.getConstructorFor(TestClass.class, args);
80 Constructor<TestClass> constructor =
81 AndroidMock.getConstructorFor(TestClass.class, args)
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
AccessibleObjectTest.java 24 public class TestClass {
34 AccessibleObject ao = TestClass.class.getField("aField");
49 AccessibleObject ao = TestClass.class.getField("aField");
  /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/luni/src/test/java/tests/api/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/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ClassTest.java 60 public static class TestClass {
83 public TestClass() {
87 private TestClass(Object o) {
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.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...]
  /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...]
  /cts/tools/utils/
DescriptionGenerator.java 133 xmlGenerator.addTestClass(new TestClass(clazz, ctsExpectationStore));
268 void addTestClass(TestClass tc) {
357 void appendSuiteToElement(Node elem, TestClass testSuite) {
469 void appendSuiteToElementImpl(Node elem, TestClass testSuite) {
494 static class TestClass {
504 TestClass(String name, Collection<TestMethod> cases) {
510 * Construct a TestClass object using ClassDoc.
514 TestClass(ClassDoc clazz, ExpectationStore expectationStore) {
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-internal.h 520 template <class TestClass>
523 virtual Test* CreateTest() { return new TestClass; }
644 typedef typename GTEST_BIND_(TestSel, Type) TestClass;
655 TestClass::SetUpTestCase,
656 TestClass::TearDownTestCase,
657 new TestFactoryImpl<TestClass>);
    [all...]
  /external/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/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h 546 template <class TestClass>
549 virtual Test* CreateTest() { return new TestClass; }
670 typedef typename GTEST_BIND_(TestSel, Type) TestClass;
681 TestClass::SetUpTestCase,
682 TestClass::TearDownTestCase,
683 new TestFactoryImpl<TestClass>);
    [all...]

Completed in 731 milliseconds

1 2