1 /* 2 * Copyright (C) 2010 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 package com.android.tradefed.testapp; 17 18 import android.test.InstrumentationTestCase; 19 20 public class OnDeviceTest extends InstrumentationTestCase { 21 testPassed()22 public void testPassed() { 23 24 } 25 testFailed()26 public void testFailed() { 27 fail("test failed"); 28 } 29 30 /** 31 * Test that never terminates. 32 */ testNeverEnding()33 public void testNeverEnding() throws InterruptedException { 34 while (true) { 35 Thread.sleep(500); 36 } 37 } 38 39 /** 40 * Test that will crash the main thread, and thus crash the process. 41 */ testCrash()42 public void testCrash() { 43 getInstrumentation().runOnMainSync(new Runnable() { 44 public void run() { 45 throw new RuntimeException(); 46 } 47 }); 48 } 49 } 50