HomeSort by relevance Sort by last modified time
    Searched refs:testMethod (Results 1 - 25 of 138) sorted by null

1 2 3 4 5 6

  /art/test/558-switch/src/
Main.java 18 public static boolean testMethod(int statusCode) {
31 if (!testMethod(301)) {
  /art/test/510-checker-try-catch/src/
Main.java 40 public static void testMethod(String method) throws Exception {
56 testMethod("testUseAfterCatch_int");
57 testMethod("testUseAfterCatch_long");
58 testMethod("testUseAfterCatch_float");
59 testMethod("testUseAfterCatch_double");
60 testMethod("testCatchPhi_const");
61 testMethod("testCatchPhi_int");
62 testMethod("testCatchPhi_long");
63 testMethod("testCatchPhi_float");
64 testMethod("testCatchPhi_double")
    [all...]
  /cts/hostsidetests/inputmethodservice/common/src/android/inputmethodservice/cts/common/test/
TestInfo.java 28 public final String testMethod;
30 public TestInfo(final String testPackage, final String testClass, final String testMethod) {
33 this.testMethod = testMethod;
42 return testClass + "#" + testMethod;
  /external/junit/src/main/java/org/junit/internal/runners/statements/
InvokeMethod.java 7 private final FrameworkMethod testMethod;
10 public InvokeMethod(FrameworkMethod testMethod, Object target) {
11 this.testMethod = testMethod;
17 testMethod.invokeExplosively(target);
  /external/junit-params/src/main/java/junitparams/internal/
InvokeNonParameterisedMethod.java 11 private final FrameworkMethod testMethod;
14 InvokeNonParameterisedMethod(FrameworkMethod testMethod, Object testClass) {
15 this.testMethod = testMethod;
21 testMethod.invokeExplosively(testClass);
  /external/testng/src/test/java/test/annotationtransformer/
MyParamTransformer.java 15 Constructor testConstructor, Method testMethod) {
16 if (!onlyOneNonNull(testClass, testConstructor, testMethod)) {
21 public static boolean onlyOneNonNull(Class testClass, Constructor testConstructor, Method testMethod) {
22 return ((testClass != null && testConstructor == null && testMethod == null) ||
23 (testClass == null && testConstructor != null && testMethod == null) ||
24 (testClass == null && testConstructor == null && testMethod != null) );
ConfigurationTransformer.java 16 Constructor testConstructor, Method testMethod)
22 Constructor testConstructor, Method testMethod)
30 public void transform(IDataProviderAnnotation annotation, Method testMethod) {
34 public void transform(IFactoryAnnotation annotation, Method testMethod) {
DataProviderTransformer.java 16 Constructor testConstructor, Method testMethod)
21 public void transform(IDataProviderAnnotation annotation, Method testMethod) {
27 Constructor testConstructor, Method testMethod)
32 public void transform(IFactoryAnnotation annotation, Method testMethod) {
FactoryTransformer.java 16 Constructor testConstructor, Method testMethod)
21 public void transform(IDataProviderAnnotation annotation, Method testMethod) {
26 Constructor testConstructor, Method testMethod)
31 public void transform(IFactoryAnnotation annotation, Method testMethod) {
MyTransformer.java 17 Constructor testConstructor, Method testMethod) {
19 if (testMethod != null) {
20 switch (testMethod.getName()) {
31 methodNames.add(testMethod.getName());
AnnotationTransformerInvocationCountTest.java 22 Constructor testConstructor, Method testMethod) {
23 if ("concurrencyTest".equals(testMethod.getName())) {
  /external/testng/src/test/java/test/dataprovider/
InnexistentDataProvider.java 11 public void testMethod(String s)
  /art/test/490-checker-inline/src/
Main.java 37 /// CHECK-START: void Main.testMethod() inliner (before)
41 /// CHECK-START: void Main.testMethod() inliner (after)
44 public static void testMethod() {
50 testMethod();
  /external/annotation-tools/asmx/test/conform/annotations/
Values.class 
ExtendedValues.class 
  /frameworks/base/test-runner/src/android/test/suitebuilder/
AssignableFrom.java 21 class AssignableFrom implements Predicate<TestMethod> {
29 public boolean apply(TestMethod testMethod) {
30 return root.isAssignableFrom(testMethod.getEnclosingClass());
  /external/testng/src/test/java/test/dependsongroup/
TestFixture2.java 13 public void testMethod() {
  /art/test/647-sinking-catch/src/
Main.java 22 public static void testMethod(String method) throws Exception {
36 testMethod("foo");
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
RedefineClassesDebuggee.java 41 logWriter.println("--> Debuggee: BEFORE redefine: RedefineClass_Debuggee.testMethod() = "
42 + RedefineClass_Debuggee.testMethod());
46 String testMethodResult = RedefineClass_Debuggee.testMethod();
47 logWriter.println("--> Debuggee: After redefine: RedefineClass_Debuggee.testMethod() = "
62 static String testMethod() {
RedefineByteCode_Debuggee001 
  /external/junit/src/main/java/org/junit/internal/runners/
MethodRoadie.java 30 private TestMethod testMethod;
32 public MethodRoadie(Object test, TestMethod method, RunNotifier notifier, Description description) {
36 testMethod = method;
40 if (testMethod.isIgnored()) {
46 long timeout = testMethod.getTimeout();
108 testMethod.invoke(test);
109 if (testMethod.expectsException()) {
110 addFailure(new AssertionError("Expected exception: " + testMethod.getExpectedException().getName()));
116 } else if (!testMethod.expectsException())
    [all...]
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
CddCoverage.java 41 public void addCoverage(String cddRequirementId, TestMethod testMethod) {
46 requirements.get(cddRequirementId).addTestMethod(testMethod);
51 private final List<TestMethod> mtestMethods;
81 public void addTestMethod(TestMethod testMethod) {
82 mtestMethods.add(testMethod);
85 public Collection<TestMethod> getTestMethods() {
90 static class TestMethod {
95 TestMethod(String testModule, String testClass, String testMethod)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
SensorCtsVerifierTestActivity.java 57 for (Method testMethod : findTestMethods()) {
58 SensorTestDetails testDetails = executeTest(testMethod);
86 private SensorTestDetails executeTest(Method testMethod) throws InterruptedException {
87 String testMethodName = testMethod.getName();
89 mCurrentTestNode = new TestNode(testMethod);
94 String testSummary = (String) testMethod.invoke(this);
127 public TestNode(Method testMethod) {
128 mTestMethod = testMethod;
  /dalvik/dx/tests/140-ssa-phi-overlap/
Test.class 
  /art/test/910-methods/src/art/
Test910.java 29 testMethod("java.lang.Object", "toString");
30 testMethod("java.lang.String", "charAt", int.class);
31 testMethod("java.lang.Math", "sqrt", double.class);
32 testMethod("java.util.List", "add", Object.class);
34 testMethod(getProxyClass(), "run");
38 testMethod(findSyntheticMethod(), NestedSynthetic.class, false);
41 private static void testMethod(String className, String methodName, Class<?>... types)
44 testMethod(base, methodName, types);
47 private static void testMethod(Class<?> base, String methodName, Class<?>... types)
50 testMethod(m, base, true)
    [all...]

Completed in 932 milliseconds

1 2 3 4 5 6