Home | History | Annotate | Download | only in verify
      1 /*
      2  * Copyright (C) 2008 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 dxc.junit.verify;
     18 
     19 import junit.framework.Test;
     20 import junit.framework.TestSuite;
     21 import junit.textui.TestRunner;
     22 
     23 /**
     24  * Listing of all the tests that are to be run.
     25  */
     26 public class AllTests {
     27 
     28     public static void run() {
     29         TestRunner.main(new String[] {AllTests.class.getName()});
     30     }
     31 
     32     public static final Test suite() {
     33         TestSuite suite = new TestSuite("Tests for java vm: test that "
     34                 + "structurally damaged files are rejected by the verifier");
     35         suite.addTestSuite(dxc.junit.verify.t481_1.Test_t481_1.class);
     36         suite.addTestSuite(dxc.junit.verify.t481_2.Test_t481_2.class);
     37         suite.addTestSuite(dxc.junit.verify.t481_3.Test_t481_3.class);
     38         suite.addTestSuite(dxc.junit.verify.t481_4.Test_t481_4.class);
     39         suite.addTestSuite(dxc.junit.verify.t481_6.Test_t481_6.class);
     40 
     41         suite.addTestSuite(dxc.junit.verify.t482_2.Test_t482_2.class);
     42         suite.addTestSuite(dxc.junit.verify.t482_3.Test_t482_3.class);
     43         suite.addTestSuite(dxc.junit.verify.t482_4.Test_t482_4.class);
     44         suite.addTestSuite(dxc.junit.verify.t482_8.Test_t482_8.class);
     45         suite.addTestSuite(dxc.junit.verify.t482_9.Test_t482_9.class);
     46         suite.addTestSuite(dxc.junit.verify.t482_10.Test_t482_10.class);
     47         suite.addTestSuite(dxc.junit.verify.t482_11.Test_t482_11.class);
     48         suite.addTestSuite(dxc.junit.verify.t482_14.Test_t482_14.class);
     49         suite.addTestSuite(dxc.junit.verify.t482_20.Test_t482_20.class);
     50 
     51         return suite;
     52     }
     53 }
     54