Home | History | Annotate | Download | only in tests
      1 /*
      2  * Copyright (C) 2008 The Android Open Source Project
      3  *
      4  * Licensed under the Eclipse Public License, Version 1.0 (the "License"); you
      5  * may not use this file except in compliance with the License. You may obtain a
      6  * copy of the License at
      7  *
      8  * http://www.eclipse.org/org/documents/epl-v10.php
      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, WITHOUT
     12  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
     13  * License for the specific language governing permissions and limitations under
     14  * the License.
     15  */
     16 package com.android.ide.eclipse.tests;
     17 
     18 import junit.framework.TestSuite;
     19 
     20 
     21 /**
     22  * Container TestSuite for all eclipse tests, both functional and unit
     23  */
     24 public class AllTests extends TestSuite {
     25 
     26     public AllTests() {
     27 
     28     }
     29 
     30     /**
     31      * Returns a suite of test cases to be run.
     32      */
     33     public static TestSuite suite() {
     34         TestSuite suite = new TestSuite();
     35         suite.addTest(FuncTests.suite());
     36         suite.addTest(UnitTests.suite());
     37         return suite;
     38     }
     39 
     40 }
     41