aboutsummaryrefslogtreecommitdiffstats
path: root/ajdoc/testsrc
diff options
context:
space:
mode:
authoraclement <aclement>2004-04-07 16:04:35 +0000
committeraclement <aclement>2004-04-07 16:04:35 +0000
commit536a11fabced912445e6f293692af69f9b0d8048 (patch)
tree9ee9e4528c2e1c0c796541411f0eea8e4912081d /ajdoc/testsrc
parent172f6f9edc3f295616e41196bfe36fcb653b61c7 (diff)
downloadaspectj-536a11fabced912445e6f293692af69f9b0d8048.tar.gz
aspectj-536a11fabced912445e6f293692af69f9b0d8048.zip
Moved to default package.
Diffstat (limited to 'ajdoc/testsrc')
-rw-r--r--ajdoc/testsrc/org/aspectj/tools/ajdoc/AjdocModuleTests.java30
1 files changed, 0 insertions, 30 deletions
diff --git a/ajdoc/testsrc/org/aspectj/tools/ajdoc/AjdocModuleTests.java b/ajdoc/testsrc/org/aspectj/tools/ajdoc/AjdocModuleTests.java
deleted file mode 100644
index a42b5435d..000000000
--- a/ajdoc/testsrc/org/aspectj/tools/ajdoc/AjdocModuleTests.java
+++ /dev/null
@@ -1,30 +0,0 @@
-/* *******************************************************************
- * Copyright (c) 2003 Contributors.
- * All rights reserved.
- * This program and the accompanying materials are made available
- * under the terms of the Common Public License v1.0
- * which accompanies this distribution and is available at
- * http://www.eclipse.org/legal/cpl-v10.html
- *
- * Contributors:
- * Mik Kersten initial implementation
- * ******************************************************************/
- package org.aspectj.tools.ajdoc;
-
-import junit.framework.Test;
-import junit.framework.TestSuite;
-
-/**
- * @author Mik Kersten
- */
-public class AjdocModuleTests {
- public static Test suite() {
- TestSuite suite = new TestSuite("Test for org.aspectj.tools.ajdoc");
- //$JUnit-BEGIN$
- suite.addTestSuite(SpacewarTestCase.class);
- suite.addTestSuite(CoverageTestCase.class);
- suite.addTestSuite(ExecutionTestCase.class);// !!! must be last because it exists
- //$JUnit-END$
- return suite;
- }
-}