Home | History | Annotate | Download | only in junit3
      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 
     17 package vogar.target.junit3;
     18 
     19 import junit.framework.TestCase;
     20 
     21 /**
     22  * A test case that contains multiple tests that will timeout which is used to verify behavior of
     23  * timeout that occurs while running tests within a single class.
     24  */
     25 public class LongTest2 extends TestCase {
     26     public LongTest2(String name) {
     27         super(name);
     28     }
     29 
     30     private void sleep() {
     31         try {
     32             Thread.sleep(1000 / 4);
     33         } catch (InterruptedException ignored) {
     34         }
     35     }
     36 
     37     public void test1() {
     38         sleep();
     39     }
     40 
     41     public void test2() {
     42         sleep();
     43     }
     44 
     45     public void test3() {
     46         sleep();
     47     }
     48 
     49     public void test4() {
     50         sleep();
     51     }
     52 
     53     public void test5() {
     54         sleep();
     55     }
     56 
     57     public void test6() {
     58         sleep();
     59     }
     60 
     61     public void test7() {
     62         sleep();
     63     }
     64 
     65     public void test8() {
     66         sleep();
     67     }
     68 }
     69