Browse Source

mavenized testing-util module - wip

tags/V1_9_3RC1
Andy Clement 5 years ago
parent
commit
27f3a1ceb2

+ 0
- 11
testing-util/.classpath View File

@@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="testsrc"/>
<classpathentry kind="lib" path="/lib/junit/junit.jar" sourcepath="/lib/junit/junit-src.jar"/>
<classpathentry kind="src" path="/util"/>
<classpathentry kind="lib" path="/lib/jdiff/jdiff.jar"/>
<classpathentry kind="src" path="/bridge"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path="bin"/>
</classpath>

+ 0
- 2
testing-util/.cvsignore View File

@@ -1,2 +0,0 @@
bin
bintest

+ 0
- 19
testing-util/.project View File

@@ -1,19 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>testing-util</name>
<comment></comment>
<projects>
<project>bridge</project>
<project>util</project>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

+ 0
- 6
testing-util/build.xml View File

@@ -1,6 +0,0 @@
<?xml version="1.0"?>
<!-- see ../build/*.html for explanation -->
<project name="testing-util" default="test" basedir=".">
<import file="${basedir}/../build/build.xml"/>
</project>


+ 42
- 0
testing-util/pom.xml View File

@@ -0,0 +1,42 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.3.BUILD-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

<artifactId>testing-util</artifactId>
<packaging>jar</packaging>
<name>testing-util</name>

<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>util</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>bridge</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
</dependency>
<dependency>
<groupId>jdiff</groupId>
<artifactId>jdiff</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/../lib/jdiff/jdiff.jar</systemPath>
</dependency>
</dependencies>

</project>

testing-util/src/org/aspectj/testing/util/TestUtil.java → testing-util/src/main/java/org/aspectj/testing/util/TestUtil.java View File


testing-util/testsrc/org/aspectj/testingutil/TestCompareClassFile.java → testing-util/src/test/java/org/aspectj/testingutil/TestCompareClassFile.java View File


testing-util/testsrc/org/aspectj/testingutil/TestUtilTest.java → testing-util/src/test/java/org/aspectj/testingutil/TestUtilTest.java View File


testing-util/testsrc/org/aspectj/testingutil/UtilTests.java → testing-util/src/test/java/org/aspectj/testingutil/UtilTests.java View File

@@ -29,3 +29,4 @@ public class UtilTests extends TestCase {
public UtilTests(String name) { super(name); }

}


+ 0
- 31
testing-util/testsrc/org/aspectj/testingutil/TestingUtilModuleTests.java View File

@@ -1,31 +0,0 @@
package org.aspectj.testingutil;
/* *******************************************************************
* Copyright (c) 1999-2001 Xerox Corporation,
* 2002 Palo Alto Research Center, Incorporated (PARC).
* All rights reserved.
* This program and the accompanying materials are made available
* under the terms of the Eclipse Public License v1.0
* which accompanies this distribution and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Xerox/PARC initial implementation
* ******************************************************************/


// default package

import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;

public class TestingUtilModuleTests extends TestCase {

public static Test suite() {
TestSuite suite = new TestSuite(TestingUtilModuleTests.class.getName());
suite.addTest(UtilTests.suite());
return suite;
}

public TestingUtilModuleTests(String name) { super(name); }
}

Loading…
Cancel
Save