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

1 2 3 4 5

  /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...]
  /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())) {
MyTimeOutTransformer.java 13 Constructor testConstructor, Method testMethod)
  /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();
  /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() {
  /external/junit/src/org/junit/internal/runners/statements/
InvokeMethod.java 13 public InvokeMethod(FrameworkMethod testMethod, Object target) {
14 fTestMethod= testMethod;
  /frameworks/base/test-runner/src/android/test/suitebuilder/annotation/
HasClassAnnotation.java 21 import android.test.suitebuilder.TestMethod;
25 * A predicate that checks to see if a {@link android.test.suitebuilder.TestMethod} has a specific annotation on the
30 class HasClassAnnotation implements Predicate<TestMethod> {
38 public boolean apply(TestMethod testMethod) {
39 return testMethod.getEnclosingClass().getAnnotation(annotationClass) != null;
HasMethodAnnotation.java 20 import android.test.suitebuilder.TestMethod;
25 * A predicate that checks to see if a the method represented by {@link TestMethod} has a certain
30 class HasMethodAnnotation implements Predicate<TestMethod> {
38 public boolean apply(TestMethod testMethod) {
39 return testMethod.getAnnotation(annotationClass) != null;
HasAnnotation.java 21 import android.test.suitebuilder.TestMethod;
26 * A predicate that checks to see if a {@link TestMethod} has a specific annotation, either on the
31 public class HasAnnotation implements Predicate<TestMethod> {
33 private Predicate<TestMethod> hasMethodOrClassAnnotation;
41 public boolean apply(TestMethod testMethod) {
42 return hasMethodOrClassAnnotation.apply(testMethod);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
RedefineClassesDebuggee.java 40 logWriter.println("--> Debuggee: BEFORE redefine: RedefineClass_Debuggee.testMethod() = "
41 + RedefineClass_Debuggee.testMethod());
45 String testMethodResult = RedefineClass_Debuggee.testMethod();
46 logWriter.println("--> Debuggee: After redefine: RedefineClass_Debuggee.testMethod() = "
61 static String testMethod() {
RedefineByteCode_Debuggee001 
  /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;
  /external/clang/test/SemaCXX/
tag-ambig.cpp 17 virtual bool testMethod (Test::Point& p) = 0;
  /external/testng/src/main/java/org/testng/
IAnnotationTransformer.java 17 * testConstructor and testMethod will be non-null.
25 * @param testMethod If the annotation was found on a method,
29 Constructor testConstructor, Method testMethod);
  /external/testng/src/main/java/org/testng/internal/annotations/
DefaultAnnotationTransformer.java 15 Constructor testConstructor, Method testMethod)
  /external/testng/src/test/java/test/
IndividualMethodsTest.java 25 public void testMethod()
  /external/testng/src/test/java/test/factory/
MyTest.java 19 public void testMethod() {

Completed in 613 milliseconds

1 2 3 4 5