View Javadoc
1   package org.apache.maven.surefire.booter;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *     http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import junit.framework.JUnit4TestAdapter;
23  import junit.framework.Test;
24  import junit.framework.TestCase;
25  import junit.framework.TestSuite;
26  import org.apache.maven.surefire.booter.spi.LegacyMasterProcessChannelDecoderTest;
27  import org.apache.maven.surefire.booter.spi.LegacyMasterProcessChannelEncoderTest;
28  
29  /**
30   * Adapt the JUnit4 tests which use only annotations to the JUnit3 test suite.
31   *
32   * @author Tibor Digana (tibor17)
33   * @since 2.19
34   */
35  public class JUnit4SuiteTest extends TestCase
36  {
37      public static Test suite()
38      {
39          TestSuite suite = new TestSuite();
40          suite.addTest( new JUnit4TestAdapter( CommandReaderTest.class ) );
41          suite.addTest( new JUnit4TestAdapter( PpidCheckerTest.class ) );
42          suite.addTest( new JUnit4TestAdapter( SystemUtilsTest.class ) );
43          suite.addTest( new JUnit4TestAdapter( IsolatedClassLoaderTest.class ) );
44          suite.addTest( new JUnit4TestAdapter( ForkedBooterTest.class ) );
45          suite.addTest( new JUnit4TestAdapter( ForkedBooterMockTest.class ) );
46          suite.addTest( new JUnit4TestAdapter( BooterDeserializerTest.class ) );
47          suite.addTestSuite( ClasspathTest.class );
48          suite.addTestSuite( PropertiesWrapperTest.class );
49          suite.addTest( new JUnit4TestAdapter( LegacyMasterProcessChannelDecoderTest.class ) );
50          suite.addTest( new JUnit4TestAdapter( LegacyMasterProcessChannelEncoderTest.class ) );
51          suite.addTestSuite( SurefireReflectorTest.class );
52          return suite;
53      }
54  }