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 /**
23 * @author <a href="mailto:trygvis@inamo.no">Trygve Laugstøl</a>
24 * @author <a href="mailto:fgiust@apache.org">Fabrizio Giustina</a>
25 * @version $Id: EclipseAjdtPluginIT.java 765431 2009-04-15 23:48:40Z aheritier $
26 */
27 public class EclipseAjdtPluginIT
28 extends AbstractEclipsePluginIT
29 {
30 protected void setUp()
31 throws Exception
32 {
33 super.setUp();
34 }
35
36 public void testProjectAjdt01()
37 throws Exception
38 {
39 testProject( "project-ajdt-01" );
40 }
41
42 public void testProjectAjdt02()
43 throws Exception
44 {
45 testProject( "project-ajdt-02" );
46 }
47
48 public void testProjectAjdt03()
49 throws Exception
50 {
51 testProject( "project-ajdt-03" );
52 }
53
54 public void testProjectAjdt04()
55 throws Exception
56 {
57 testProject( "project-ajdt-04" );
58 }
59
60 public void testProjectAjdt05()
61 throws Exception
62 {
63 testProject( "project-ajdt-05" );
64 }
65
66 public void testProjectAjdt06()
67 throws Exception
68 {
69 testProject( "project-ajdt-06" );
70 }
71
72 public void testProjectAjdt07()
73 throws Exception
74 {
75 testProject( "project-ajdt-07" );
76 }
77
78 public void testProjectAjdt08()
79 throws Exception
80 {
81 testProject( "project-ajdt-08" );
82 }
83
84 public void testProjectAjdt09()
85 throws Exception
86 {
87 testProject( "project-ajdt-09" );
88 }
89
90 public void testProjectAjdt10()
91 throws Exception
92 {
93 testProject( "project-ajdt-10-MECLIPSE-538" );
94 }
95
96 public void testProjectAjdt11()
97 throws Exception
98 {
99 testProject( "project-ajdt-11-MECLIPSE-104" );
100 }
101
102 }