View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.maven.plugin.eclipse.it;
20  
21  /**
22   * @author <a href="mailto:trygvis@inamo.no">Trygve Laugst&oslash;l</a>
23   * @author <a href="mailto:fgiust@apache.org">Fabrizio Giustina</a>
24   * @version $Id: EclipseAjdtPluginIT.java 798342 2009-07-28 00:17:00Z aheritier $
25   */
26  public class EclipseAjdtPluginIT
27      extends AbstractEclipsePluginIT
28  {
29      protected void setUp()
30          throws Exception
31      {
32          super.setUp();
33      }
34  
35      public void testProjectAjdt01()
36          throws Exception
37      {
38          testProject( "project-ajdt-01" );
39      }
40  
41      public void testProjectAjdt02()
42          throws Exception
43      {
44          testProject( "project-ajdt-02" );
45      }
46  
47      public void testProjectAjdt03()
48          throws Exception
49      {
50          testProject( "project-ajdt-03" );
51      }
52  
53      public void testProjectAjdt04()
54          throws Exception
55      {
56          testProject( "project-ajdt-04" );
57      }
58  
59      public void testProjectAjdt05()
60          throws Exception
61      {
62          testProject( "project-ajdt-05" );
63      }
64  
65      public void testProjectAjdt06()
66          throws Exception
67      {
68          testProject( "project-ajdt-06" );
69      }
70  
71      public void testProjectAjdt07()
72          throws Exception
73      {
74          testProject( "project-ajdt-07" );
75      }
76  
77      public void testProjectAjdt08()
78          throws Exception
79      {
80          testProject( "project-ajdt-08" );
81      }
82  
83      public void testProjectAjdt09()
84          throws Exception
85      {
86          testProject( "project-ajdt-09" );
87      }
88  
89      public void testProjectAjdt10()
90          throws Exception
91      {
92          testProject( "project-ajdt-10-MECLIPSE-538" );
93      }
94  
95      public void testProjectAjdt11()
96          throws Exception
97      {
98          testProject( "project-ajdt-11-MECLIPSE-104" );
99      }
100 
101 }