HomeSort by relevance Sort by last modified time
    Searched refs:runTest (Results 26 - 50 of 1294) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/vogar/test/vogar/target/junit3/
ParameterizedTestCase.java 27 protected void runTest() throws Throwable {
  /external/testng/src/test/java/test/junit/testsetup/
LoggingTestSuite.java 22 public void runTest( Test test, TestResult result )
24 super.runTest( test, result );
  /cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/
AccountCheckHostSideTest.java 65 private void runTest(String method) throws Exception {
81 runTest("testCleanUpNonTestOwner");
92 runTest("testRemoveAllAccounts");
162 // runTest("testCheckPreconfiguredAccountFeatures");
177 runTest("testAddIncompatibleA");
184 runTest("testAddIncompatibleB");
191 runTest("testAddIncompatibleC");
198 runTest("testAddCompatible");
205 runTest("testAddCompatible");
206 runTest("testAddCompatible")
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
ssa_test.go 21 func runTest(t *testing.T, filename string, flags ...string) {
109 func TestShortCircuit(t *testing.T) { runTest(t, "short.go") }
112 func TestBreakContinue(t *testing.T) { runTest(t, "break.go") }
115 func TestTypeAssertion(t *testing.T) { runTest(t, "assert.go") }
118 func TestArithmetic(t *testing.T) { runTest(t, "arith.go") }
121 func TestFP(t *testing.T) { runTest(t, "fp.go") }
124 runTest(t, "fp.go", "-gcflags=-d=softfloat,ssa/check/on")
128 func TestArithmeticBoundary(t *testing.T) { runTest(t, "arithBoundary.go") }
131 func TestArithmeticConst(t *testing.T) { runTest(t, "arithConst.go") }
133 func TestChan(t *testing.T) { runTest(t, "chan.go")
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
ssa_test.go 21 func runTest(t *testing.T, filename string, flags ...string) {
109 func TestShortCircuit(t *testing.T) { runTest(t, "short.go") }
112 func TestBreakContinue(t *testing.T) { runTest(t, "break.go") }
115 func TestTypeAssertion(t *testing.T) { runTest(t, "assert.go") }
118 func TestArithmetic(t *testing.T) { runTest(t, "arith.go") }
121 func TestFP(t *testing.T) { runTest(t, "fp.go") }
124 runTest(t, "fp.go", "-gcflags=-d=softfloat,ssa/check/on")
128 func TestArithmeticBoundary(t *testing.T) { runTest(t, "arithBoundary.go") }
131 func TestArithmeticConst(t *testing.T) { runTest(t, "arithConst.go") }
133 func TestChan(t *testing.T) { runTest(t, "chan.go")
    [all...]
  /cts/tests/tests/voicesettings/src/android/voicesettings/cts/
BatterySaverModeTest.java 62 if (!runTest(BroadcastUtils.TestcaseType.BATTERYSAVER_MODE_OFF, false)) {
66 runTest(BroadcastUtils.TestcaseType.BATTERYSAVER_MODE_ON, true);
71 if (!runTest(BroadcastUtils.TestcaseType.BATTERYSAVER_MODE_ON, true)) {
75 runTest(BroadcastUtils.TestcaseType.BATTERYSAVER_MODE_OFF, false);
79 private boolean runTest(BroadcastUtils.TestcaseType test, boolean expectedMode) throws Exception {
  /external/testng/src/test/java/test/factory/
FactoryDataProviderTest.java 18 runTest(FactoryDataProviderSampleTest.class, 41, 42);
23 runTest(FactoryDataProviderStaticSampleTest.class, 43, 44);
28 runTest(FactoryDataProviderWithNoArgCtorSampleErrorTest.class, 45, 46);
34 runTest(FactoryDataProviderStaticSampleErrorTest.class, 43, 44);
37 private void runTest(Class<?> cls, int n1, int n2) {
  /art/test/421-exceptions/src/
Main.java 35 $opt$runTest();
37 $opt$runTest();
40 public static void $opt$runTest() {
  /external/testng/src/test/java/test/verify/
VerifyTest.java 12 private void runTest(Class<?> cls, int expected) {
23 runTest(VerifySampleTest.class, 4);
28 runTest(VerifyNoListenersSampleTest.class, 3);
  /external/apache-harmony/support/src/test/java/tests/support/
Support_SetTest.java 36 public void runTest() {
46 new Support_CollectionTest("", set).runTest();
  /libcore/support/src/test/java/tests/support/
Support_SetTest.java 36 public void runTest() {
46 new Support_CollectionTest("", set).runTest();
  /external/libcxx/test/libcxx/utilities/function.objects/func.require/
bullet_4_5_6.pass.cpp 139 runTest<Expect &> (M, C_<T&>(obj), expect);
140 runTest<Expect const&> (M, C_<T const&>(obj), expect);
141 runTest<Expect volatile&> (M, C_<T volatile&>(obj), expect);
142 runTest<Expect const volatile&>(M, C_<T const volatile&>(obj), expect);
144 runTest<Expect&&> (M, C_<T&&>(obj), expect);
145 runTest<Expect const&&> (M, C_<T const&&>(obj), expect);
146 runTest<Expect volatile&&> (M, C_<T volatile&&>(obj), expect);
147 runTest<Expect const volatile&&>(M, C_<T const volatile&&>(obj), expect);
153 runTest<Expect &> (M, obj, expect);
154 runTest<Expect const&> (M, makeConst(obj), expect)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/utilities/function.objects/func.require/
bullet_4_5_6.pass.cpp 139 runTest<Expect &> (M, C_<T&>(obj), expect);
140 runTest<Expect const&> (M, C_<T const&>(obj), expect);
141 runTest<Expect volatile&> (M, C_<T volatile&>(obj), expect);
142 runTest<Expect const volatile&>(M, C_<T const volatile&>(obj), expect);
144 runTest<Expect&&> (M, C_<T&&>(obj), expect);
145 runTest<Expect const&&> (M, C_<T const&&>(obj), expect);
146 runTest<Expect volatile&&> (M, C_<T volatile&&>(obj), expect);
147 runTest<Expect const volatile&&>(M, C_<T const volatile&&>(obj), expect);
153 runTest<Expect &> (M, obj, expect);
154 runTest<Expect const&> (M, makeConst(obj), expect)
    [all...]
  /frameworks/rs/tests/java_api/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/
BlasTest.java 97 public void runTest(TestAction ta, String testName) {
117 runTest(ta, TestName.SGEMM_SMALL.name());
124 runTest(ta, TestName.SGEMM_MEDIUM.name());
131 runTest(ta, TestName.SGEMM_LARGE.name());
138 runTest(ta, TestName.BNNM_SMALL.name());
145 runTest(ta, TestName.BNNM_MEDIUM.name());
152 runTest(ta, TestName.BNNM_LARGE.name());
159 runTest(ta, TestName.SGEMM_GoogLeNet.name());
166 runTest(ta, TestName.BNNM_GoogLeNet.name());
173 runTest(ta, TestName.SGEMM_GoogLeNet_Padded.name())
    [all...]
  /art/test/935-non-retransformable/src-ex/
TestMain.java 20 public static void runTest() throws Exception {
  /art/test/948-change-annotations/src/
AddAnnotationsTest.java 65 public void runTest(Transform t) {
ChangeAnnotationValues.java 59 public void runTest(Transform t) {
RemoveAnnotationsTest.java 50 public void runTest(Transform t) {
  /cts/tests/tests/alarmclock/src/android/alarmclock/cts/
SetAlarmTest.java 28 assertEquals(Utils.COMPLETION_RESULT, runTest(TestcaseType.SET_ALARM));
SnoozeAlarmTest.java 28 String result = runTest(TestcaseType.SNOOZE_ALARM);
35 // The above call to runTest() would have failed the test otherwise.
  /external/testng/src/test/java/test/
ReturnValueTest.java 27 runTest(true);
32 runTest(false);
38 runTest(true);
41 private void runTest(boolean allowed) {
  /external/testng/src/test/java/test/commandline/
CommandLineOverridesXml.java 18 runTest("go", null, Arrays.asList(new String[] { "f2" }));
23 runTest(null, "go", Arrays.asList(new String[] { "f1" }));
28 runTest(null, null, Arrays.asList(new String[] { "f1", "f2" }));
31 private void runTest(String group, String excludedGroups, List<String> methods) {
  /external/testng/src/test/java/test/listeners/
ExecutionListenerTest.java 33 runTest(ExecutionListener1SampleTest.class, true /* add listener */, true /* should run */);
38 runTest(ExecutionListener1SampleTest.class, false /* don't add listener */,
44 runTest(ExecutionListener2SampleTest.class, false /* don't add listener */,
48 private void runTest(Class<?> listenerClass, boolean addListener, boolean expected) {
  /external/testng/src/test/java/test/methodselectors/
PriorityTest.java 13 private void runTest(int priority, String[] passedTests) {
41 runTest(-5, new String[] {});
46 runTest(5, new String[] { "alwaysRun" });
51 runTest(15, new String[] { "alwaysRun", "neverRun" });
  /external/testng/src/test/java/test/override/
OverrideTest.java 25 private void runTest(String include, String exclude) {
49 runTest("goodGroup", null);
55 runTest(null, "badGroup");
61 runTest("goodGroup", "badGroup");

Completed in 567 milliseconds

12 3 4 5 6 7 8 91011>>