]> source.dussan.org Git - aspectj.git/commitdiff
quick and dirty link checker manual test
authorwisberg <wisberg>
Thu, 5 Jun 2003 09:15:36 +0000 (09:15 +0000)
committerwisberg <wisberg>
Thu, 5 Jun 2003 09:15:36 +0000 (09:15 +0000)
testing/testdata/badLinks.html [new file with mode: 0644]

diff --git a/testing/testdata/badLinks.html b/testing/testdata/badLinks.html
new file mode 100644 (file)
index 0000000..95f51b9
--- /dev/null
@@ -0,0 +1,25 @@
+<html>
+<body>
+<a href="#unmatched"></a>
+<!-- positive tests 
+-->
+<a href="badLinks.html"></a>
+<a href="#matched"></a>
+<a href="badLinks.html#matched"></a>
+<a name="matched"></a>
+<a href="http://java.sun.com"></a>
+
+<!-- flag but not fail 
+-->
+<a href="ftp://ftp.sun.com"></a>
+
+<!-- should fail 
+-->
+<a href=""></a>
+<a href="#unmatched"></a>
+<a href="noSuchFile.html"></a>
+<a href="http://no.such.place"></a>
+<a href="malformed://java.sun.com"></a>
+
+</body>
+</html>