aboutsummaryrefslogtreecommitdiffstats
path: root/ajdoc/testsrc
diff options
context:
space:
mode:
authoraclement <aclement>2008-07-18 21:56:28 +0000
committeraclement <aclement>2008-07-18 21:56:28 +0000
commitd2ffd516f8c75144ab877e72b285de6197642341 (patch)
tree3ea9294c8022674a72859e93f0a43c2cb1ed3f52 /ajdoc/testsrc
parent41f9314f6b9b29cf5a47ce32b37257834549b112 (diff)
downloadaspectj-d2ffd516f8c75144ab877e72b285de6197642341.tar.gz
aspectj-d2ffd516f8c75144ab877e72b285de6197642341.zip
230234 comment 10 - ajdoc modifications and tests
Diffstat (limited to 'ajdoc/testsrc')
-rw-r--r--ajdoc/testsrc/org/aspectj/tools/ajdoc/BugTests.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/ajdoc/testsrc/org/aspectj/tools/ajdoc/BugTests.java b/ajdoc/testsrc/org/aspectj/tools/ajdoc/BugTests.java
index c1749875f..c36852c6d 100644
--- a/ajdoc/testsrc/org/aspectj/tools/ajdoc/BugTests.java
+++ b/ajdoc/testsrc/org/aspectj/tools/ajdoc/BugTests.java
@@ -146,6 +146,7 @@ public class BugTests extends AjdocTestCase {
String foo = "description of foo";
String bar = "description of bar";
String goo = "description of goo";
+ String bas = "description of bas";
assertTrue("expected method description 'description of foo' to appear" +
" in ajdoc output but it did not",
AjdocOutputChecker.containsString(htmlFile, foo));
@@ -155,6 +156,9 @@ public class BugTests extends AjdocTestCase {
assertFalse("didn't expect method description 'description of goo' to " +
"appear in ajdoc output but it did not",
AjdocOutputChecker.containsString(htmlFile, goo));
+ assertTrue("expected method description 'description of bas' to appear" +
+ " in ajdoc output but it did not",
+ AjdocOutputChecker.containsString(htmlFile, bas));
}
/**