Home
last modified time | relevance | path

Searched refs:testMethod (Results 1 – 20 of 20) sorted by relevance

/external/v8/test/webkit/
Dinstance-of-immediates.js31 function testSet(constructor, testMethod) argument
33 testMethod["1"]("(1 instanceof " + constructor + ")");
34 testMethod["{}"]("({} instanceof " + constructor + ")");
35 testMethod["obj"]("(obj instanceof " + constructor + ")");
/external/javassist/src/test/test/javassist/proxy/
DProxyFactoryCompatibilityTest.java56 proxy1.testMethod(); in testFactoryCompatibility()
63 proxy2.testMethod(); in testFactoryCompatibility()
80 proxy3.testMethod(); in testFactoryCompatibility()
86 proxy4.testMethod(); in testFactoryCompatibility()
97 public void testMethod() in testMethod() method in ProxyFactoryCompatibilityTest.TestClass
112 public void testMethod(); in testMethod() method
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
DRedefineClassesDebuggee.java41 + RedefineClass_Debuggee.testMethod()); in run()
45 String testMethodResult = RedefineClass_Debuggee.testMethod(); in run()
61 static String testMethod() { in testMethod() method in RedefineClass_Debuggee
DRedefineByteCode_Debuggee001RedefineClassesDebuggee.java package org.apache.harmony.jpda.tests.jdwp.VirtualMachine org. ...
/external/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/
DCustomRobolectricTestRunnerTest.java21 static Method testMethod; field in CustomRobolectricTestRunnerTest
44 assertEquals("shouldInvokeBeforeTestWithTheCorrectMethod", testMethod.getName()); in shouldInvokeBeforeTestWithTheCorrectMethod()
63 testMethod = method; in beforeTest()
/external/junit/src/org/junit/internal/runners/statements/
DInvokeMethod.java13 public InvokeMethod(FrameworkMethod testMethod, Object target) { in InvokeMethod() argument
14 fTestMethod= testMethod; in InvokeMethod()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/DebuggerOnDemand/
DOnthowDebuggerLaunchDebuggee.java65 testMethod(); in run()
68 void testMethod() { in testMethod() method in OnthowDebuggerLaunchDebuggee
/external/droiddriver/src/io/appium/droiddriver/runner/
DTestRunner.java163 private <T extends Annotation> T getAnnotation(TestMethod testMethod, Class<T> clazz) { in getBuilderRequirements()
164 T annotation = testMethod.getAnnotation(clazz); in getBuilderRequirements()
166 annotation = testMethod.getEnclosingClass().getAnnotation(clazz); in getBuilderRequirements()
/external/junit/src/org/junit/experimental/theories/internal/
DAssignments.java39 public static Assignments allUnassigned(Method testMethod, in allUnassigned() argument
44 signatures.addAll(ParameterSignature.signatures(testMethod)); in allUnassigned()
/external/clang/test/SemaCXX/
Dtag-ambig.cpp17 virtual bool testMethod (Test::Point& p) = 0;
/external/junit/src/org/junit/internal/runners/
DJUnit4ClassRunner.java97 TestMethod testMethod= wrapMethod(method); in invokeTestMethod() local
98 new MethodRoadie(test, testMethod, notifier, description).run(); in invokeTestMethod()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
DInvokeMethod003Debuggee.java26 public static int testMethod(Object obj) throws Throwable { in testMethod() method in InvokeMethod003Debuggee
/external/lldb/test/unittest2/test/
Dtest_assertions.py118 testMethod = getMethod(i)
126 lambda: testMethod(*args, **kwargs))
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
DInvokeMethod002Debuggee.java29 public int testMethod(Object obj) throws Throwable { in testMethod() method in InvokeMethod002Debuggee.TestClass
/external/lldb/test/unittest2/
Dcase.py221 testMethod = getattr(self, methodName)
225 self._testMethodDoc = testMethod.__doc__
335 testMethod = getattr(self, self._testMethodName)
338 getattr(testMethod, "__unittest_skip__", False)):
342 or getattr(testMethod, '__unittest_skip_why__', ''))
357 testMethod()
/external/guava/guava-testlib/src/com/google/common/testing/
DNullPointerTester.java124 testMethod(null, method); in testStaticMethods()
144 testMethod(instance, method); in testInstanceMethods()
175 public void testMethod(@Nullable Object instance, Method method) { in testMethod() method in NullPointerTester
/external/lldb/test/
Dlldbtest.py857 testMethod = getattr(self, self._testMethodName)
858 if getattr(testMethod, "__python_api_test__", False):
870 testMethod = getattr(self, self._testMethodName)
871 if getattr(testMethod, "__benchmarks_test__", False):
1204 testMethod = getattr(self, self._testMethodName)
1205 if getattr(testMethod, "__benchmarks_test__", False):
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
DTestFmwk.java371 private Method testMethod; field in TestFmwk.MethodTarget
375 testMethod = method; in MethodTarget()
379 return testMethod != null && validateMethod(name); in validate()
396 testMethod.invoke(TestFmwk.this, NO_ARGS); in execute()
398 errln("Can't access test method " + testMethod.getName()); in execute()
/external/clang/test/Analysis/
Dinline.cpp226 void testMethod() { in testMethod() function
/external/guava/guava-testlib/test/com/google/common/testing/
DNullPointerTesterTest.java300 new NullPointerTester().testMethod(bar, method); in verifyBarPass()
310 new NullPointerTester().testMethod(bar, method); in verifyBarFail()