/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.maven.plugin.eclipse; import java.io.File; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; import java.util.ArrayList; import java.util.List; import java.util.Properties; import org.apache.maven.plugin.MojoExecutionException; import org.codehaus.plexus.util.xml.Xpp3Dom; import org.codehaus.plexus.util.xml.Xpp3DomBuilder; import org.codehaus.plexus.util.xml.pull.XmlPullParserException; /** * @author Trygve Laugstøl * @author Fabrizio Giustina * @version $Id: EclipsePluginTest.java 628794 2008-02-18 16:09:11Z aheritier $ */ public class EclipseAjdtPluginTest extends AbstractEclipsePluginTestCase { protected void setUp() throws Exception { super.setUp(); } public void testProjectAjdt1() throws Exception { testProject( "project-ajdt1" ); } public void testProjectAjdt2() throws Exception { testProject( "project-ajdt2" ); } public void testProjectAjdt3() throws Exception { testProject( "project-ajdt3" ); } public void testProjectAjdt4() throws Exception { testProject( "project-ajdt4" ); } public void testProjectAjdt5() throws Exception { testProject( "project-ajdt5" ); } public void testProjectAjdt6() throws Exception { testProject( "project-ajdt6" ); } public void testProjectAjdt7() throws Exception { testProject( "project-ajdt7" ); } public void testProjectAjdt8() throws Exception { testProject( "project-ajdt8" ); } public void testProjectAjdt9() throws Exception { testProject( "project-ajdt9" ); } }