diff options
author | mkersten <mkersten> | 2004-07-14 20:36:00 +0000 |
---|---|---|
committer | mkersten <mkersten> | 2004-07-14 20:36:00 +0000 |
commit | 8dc08453232f9b4c1572ad0feb60979fb07336fe (patch) | |
tree | 3c68b0bb36fe383a59db0f702633ab9ecf8172a0 /ajdoc/testsrc | |
parent | 2cc4826419d8c08e3879e600b82354fac2596241 (diff) | |
download | aspectj-8dc08453232f9b4c1572ad0feb60979fb07336fe.tar.gz aspectj-8dc08453232f9b4c1572ad0feb60979fb07336fe.zip |
Fixed bug#70008 "problem with ajdoc -public"
Diffstat (limited to 'ajdoc/testsrc')
-rw-r--r-- | ajdoc/testsrc/org/aspectj/tools/ajdoc/CoverageTestCase.java | 54 | ||||
-rw-r--r-- | ajdoc/testsrc/org/aspectj/tools/ajdoc/SpacewarTestCase.java | 25 |
2 files changed, 53 insertions, 26 deletions
diff --git a/ajdoc/testsrc/org/aspectj/tools/ajdoc/CoverageTestCase.java b/ajdoc/testsrc/org/aspectj/tools/ajdoc/CoverageTestCase.java index 8b7df063e..a7dd01974 100644 --- a/ajdoc/testsrc/org/aspectj/tools/ajdoc/CoverageTestCase.java +++ b/ajdoc/testsrc/org/aspectj/tools/ajdoc/CoverageTestCase.java @@ -21,22 +21,23 @@ import junit.framework.TestCase; * @author Mik Kersten */ public class CoverageTestCase extends TestCase { + + File file0 = new File("testdata/coverage/InDefaultPackage.java"); + File file1 = new File("testdata/coverage/foo/ClassA.java"); + File aspect1 = new File("testdata/coverage/foo/UseThisAspectForLinkCheck.aj"); + File file2 = new File("testdata/coverage/foo/InterfaceI.java"); + File file3 = new File("testdata/coverage/foo/PlainJava.java"); + File file4 = new File("testdata/coverage/foo/ModelCoverage.java"); + File file5 = new File("testdata/coverage/fluffy/Fluffy.java"); + File file6 = new File("testdata/coverage/fluffy/bunny/Bunny.java"); + File file7 = new File("testdata/coverage/fluffy/bunny/rocks/Rocks.java"); + File file8 = new File("testdata/coverage/fluffy/bunny/rocks/UseThisAspectForLinkCheckToo.java"); + File file9 = new File("testdata/coverage/foo/PkgVisibleClass.java"); + + File outdir = new File("testdata/coverage/doc"); public void testCoverage() { - -// System.err.println(new File("testdata/figures-demo").exists()); - File file0 = new File("testdata/coverage/InDefaultPackage.java"); - File file1 = new File("testdata/coverage/foo/ClassA.java"); - File aspect1 = new File("testdata/coverage/foo/UseThisAspectForLinkCheck.aj"); - File file2 = new File("testdata/coverage/foo/InterfaceI.java"); - File file3 = new File("testdata/coverage/foo/PlainJava.java"); - File file4 = new File("testdata/coverage/foo/ModelCoverage.java"); - File file5 = new File("testdata/coverage/fluffy/Fluffy.java"); - File file6 = new File("testdata/coverage/fluffy/bunny/Bunny.java"); - File file7 = new File("testdata/coverage/fluffy/bunny/rocks/Rocks.java"); - File file8 = new File("testdata/coverage/fluffy/bunny/rocks/UseThisAspectForLinkCheckToo.java"); - File outdir = new File("testdata/coverage/doc"); - + outdir.delete(); String[] args = { // "-XajdocDebug", "-source", @@ -53,20 +54,31 @@ public class CoverageTestCase extends TestCase { file5.getAbsolutePath(), file6.getAbsolutePath(), file7.getAbsolutePath(), - file8.getAbsolutePath() + file8.getAbsolutePath(), + file9.getAbsolutePath() }; - org.aspectj.tools.ajdoc.Main.main(args); } + public void testCoveragePublicMode() { + outdir.delete(); + String[] args = { + "-public", + "-source", + "1.4", + "-d", + outdir.getAbsolutePath(), + file3.getAbsolutePath(), + file9.getAbsolutePath() + }; + org.aspectj.tools.ajdoc.Main.main(args); + } + // public void testPlainJava() { -// File file1 = new File("testdata/coverage/foo/PlainJava.java"); -// File outdir = new File("testdata/coverage/doc"); -// +// outdir.delete(); // String[] args = { "-d", // outdir.getAbsolutePath(), -// file1.getAbsolutePath() }; -// +// file3.getAbsolutePath() }; // org.aspectj.tools.ajdoc.Main.main(args); // } diff --git a/ajdoc/testsrc/org/aspectj/tools/ajdoc/SpacewarTestCase.java b/ajdoc/testsrc/org/aspectj/tools/ajdoc/SpacewarTestCase.java index b90d74900..7556234e6 100644 --- a/ajdoc/testsrc/org/aspectj/tools/ajdoc/SpacewarTestCase.java +++ b/ajdoc/testsrc/org/aspectj/tools/ajdoc/SpacewarTestCase.java @@ -20,9 +20,12 @@ import junit.framework.TestCase; */ public class SpacewarTestCase extends TestCase { + protected void setUp() throws Exception { + super.setUp(); + new File("testdata/spacewar/docdir").delete(); + } + public void testSimpleExample() { - -// System.err.println(new File("testdata/figures-demo").exists()); File outdir = new File("testdata/spacewar/docdir"); File sourcepath = new File("testdata/spacewar"); @@ -34,12 +37,24 @@ public class SpacewarTestCase extends TestCase { "coordination" }; org.aspectj.tools.ajdoc.Main.main(args); - assertTrue(true); } - protected void setUp() throws Exception { - super.setUp(); + public void testPublicModeExample() { + File outdir = new File("testdata/spacewar/docdir"); + File sourcepath = new File("testdata/spacewar"); + + String[] args = { + "-public", + "-d", + outdir.getAbsolutePath(), + "-sourcepath", + sourcepath.getAbsolutePath(), + "spacewar", + "coordination" }; + + org.aspectj.tools.ajdoc.Main.main(args); + assertTrue(true); } protected void tearDown() throws Exception { |