View Javadoc
1   package org.apache.maven;
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 org.apache.maven.plugin.surefire.runorder.ThreadedExecutionSchedulerTest;
25  import org.apache.maven.surefire.SpecificTestClassFilterTest;
26  import org.apache.maven.surefire.booter.ForkingRunListenerTest;
27  import org.apache.maven.surefire.booter.MasterProcessCommandTest;
28  import org.apache.maven.surefire.booter.SurefireReflectorTest;
29  import org.apache.maven.surefire.report.LegacyPojoStackTraceWriterTest;
30  import org.apache.maven.surefire.suite.RunResultTest;
31  import org.apache.maven.surefire.testset.FundamentalFilterTest;
32  import org.apache.maven.surefire.testset.ResolvedTestTest;
33  import org.apache.maven.surefire.testset.TestListResolverTest;
34  import org.apache.maven.surefire.util.DefaultDirectoryScannerTest;
35  import org.apache.maven.surefire.util.ReflectionUtilsTest;
36  import org.apache.maven.surefire.util.RunOrderCalculatorTest;
37  import org.apache.maven.surefire.util.RunOrderTest;
38  import org.apache.maven.surefire.util.ScanResultTest;
39  import org.apache.maven.surefire.util.TestsToRunTest;
40  import org.apache.maven.surefire.util.UrlUtilsTest;
41  import org.apache.maven.surefire.util.internal.ConcurrencyUtilsTest;
42  import org.apache.maven.surefire.util.internal.ImmutableMapTest;
43  import org.apache.maven.surefire.util.internal.StringUtilsTest;
44  import org.junit.runner.RunWith;
45  import org.junit.runners.Suite;
46  
47  /**
48   * Adapt the JUnit4 tests which use only annotations to the JUnit3 test suite.
49   *
50   * @author Tibor Digana (tibor17)
51   * @since 2.19
52   */
53  @Suite.SuiteClasses( {
54      ThreadedExecutionSchedulerTest.class,
55      ForkingRunListenerTest.class,
56      MasterProcessCommandTest.class,
57      SurefireReflectorTest.class,
58      LegacyPojoStackTraceWriterTest.class,
59      RunResultTest.class,
60      ResolvedTestTest.class,
61      TestListResolverTest.class,
62      ConcurrencyUtilsTest.class,
63      StringUtilsTest.class,
64      DefaultDirectoryScannerTest.class,
65      RunOrderCalculatorTest.class,
66      RunOrderTest.class,
67      ScanResultTest.class,
68      TestsToRunTest.class,
69      UrlUtilsTest.class,
70      SpecificTestClassFilterTest.class,
71      FundamentalFilterTest.class,
72      ImmutableMapTest.class,
73      ReflectionUtilsTest.class
74  } )
75  @RunWith( Suite.class )
76  public class JUnit4SuiteTest
77  {
78      public static Test suite()
79      {
80          return new JUnit4TestAdapter( JUnit4SuiteTest.class );
81      }
82  }