View Javadoc

1   /*
2    * #%L
3    * Native ARchive plugin for Maven
4    * %%
5    * Copyright (C) 2002 - 2014 NAR Maven Plugin developers.
6    * %%
7    * Licensed under the Apache License, Version 2.0 (the "License");
8    * you may not use this file except in compliance with the License.
9    * You may obtain a copy of the License at
10   * 
11   * http://www.apache.org/licenses/LICENSE-2.0
12   * 
13   * Unless required by applicable law or agreed to in writing, software
14   * distributed under the License is distributed on an "AS IS" BASIS,
15   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   * See the License for the specific language governing permissions and
17   * limitations under the License.
18   * #L%
19   */
20  package com.github.maven_nar.cpptasks;
21  
22  import junit.framework.TestSuite;
23  
24  /**
25   * Test for abstract compiler class
26   *
27   * Override create to test concrete compiler implementions
28   */
29  public class TestAllClasses extends TestSuite {
30    public static TestSuite suite() {
31      return new TestAllClasses("TestAllClasses");
32    }
33  
34    public TestAllClasses(final String name) {
35      super(name);
36      addTestSuite(com.github.maven_nar.cpptasks.TestCUtil.class);
37      addTestSuite(com.github.maven_nar.cpptasks.borland.TestBorlandCCompiler.class);
38      addTestSuite(com.github.maven_nar.cpptasks.compiler.TestAbstractCompiler.class);
39      addTestSuite(com.github.maven_nar.cpptasks.compiler.TestAbstractLinker.class);
40      addTestSuite(com.github.maven_nar.cpptasks.compiler.TestAbstractProcessor.class);
41      addTestSuite(com.github.maven_nar.cpptasks.TestCCTask.class);
42      addTestSuite(com.github.maven_nar.cpptasks.TestCompilerEnum.class);
43      addTestSuite(com.github.maven_nar.cpptasks.compiler.TestCommandLineCompilerConfiguration.class);
44      addTestSuite(com.github.maven_nar.cpptasks.TestDependencyTable.class);
45      addTestSuite(com.github.maven_nar.cpptasks.types.TestDefineArgument.class);
46      addTestSuite(com.github.maven_nar.cpptasks.msvc.TestMsvc2005CCompiler.class);
47      addTestSuite(com.github.maven_nar.cpptasks.msvc.TestMsvcCCompiler.class);
48      addTestSuite(com.github.maven_nar.cpptasks.msvc.TestMsvcLinker.class);
49      addTestSuite(com.github.maven_nar.cpptasks.TestLinkerDef.class);
50      addTestSuite(com.github.maven_nar.cpptasks.TestTargetInfo.class);
51      addTestSuite(com.github.maven_nar.cpptasks.types.TestLibrarySet.class);
52      addTestSuite(com.github.maven_nar.cpptasks.TestCompilerDef.class);
53      addTestSuite(com.github.maven_nar.cpptasks.parser.TestCParser.class);
54      addTestSuite(com.github.maven_nar.cpptasks.gcc.TestGccCCompiler.class);
55      addTestSuite(com.github.maven_nar.cpptasks.gcc.TestAbstractLdLinker.class);
56      addTestSuite(com.github.maven_nar.cpptasks.gcc.TestAbstractArLibrarian.class);
57      addTestSuite(com.github.maven_nar.cpptasks.TestTargetHistoryTable.class);
58      addTestSuite(com.github.maven_nar.cpptasks.TestOutputTypeEnum.class);
59      addTestSuite(com.github.maven_nar.cpptasks.compiler.TestLinkType.class);
60      addTestSuite(com.github.maven_nar.cpptasks.TestLinkerEnum.class);
61      addTestSuite(com.github.maven_nar.cpptasks.gcc.TestAbstractLdLinker.class);
62      addTestSuite(com.github.maven_nar.cpptasks.gcc.TestAbstractArLibrarian.class);
63      addTestSuite(com.github.maven_nar.cpptasks.gcc.TestGccLinker.class);
64      addTestSuite(com.github.maven_nar.cpptasks.gcc.TestGccLinker.class);
65      addTestSuite(com.github.maven_nar.cpptasks.sun.TestForteCCCompiler.class);
66      addTestSuite(com.github.maven_nar.cpptasks.hp.TestaCCCompiler.class);
67      addTestSuite(com.github.maven_nar.cpptasks.ibm.TestVisualAgeCCompiler.class);
68    }
69  }