diff options
author | acolyer <acolyer> | 2004-08-04 12:04:41 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2004-08-04 12:04:41 +0000 |
commit | 0f211e17cac9b031ab8d9115f9030b3e65d3927a (patch) | |
tree | cabe16f0e367daaa4b28685e09f5b0bcd55bb43d /tests/base/test126 | |
parent | 9a051d348a240095e56ead5485c2dba8cf6ad4a7 (diff) | |
download | aspectj-0f211e17cac9b031ab8d9115f9030b3e65d3927a.tar.gz aspectj-0f211e17cac9b031ab8d9115f9030b3e65d3927a.zip |
Spring cleaning in the test suite. Docs for AjcTestCase and XMLBasedAjcTestCase
added in docs dir.
Diffstat (limited to 'tests/base/test126')
-rw-r--r-- | tests/base/test126/Driver.java | 18 | ||||
-rw-r--r-- | tests/base/test126/Readme.txt | 7 |
2 files changed, 0 insertions, 25 deletions
diff --git a/tests/base/test126/Driver.java b/tests/base/test126/Driver.java deleted file mode 100644 index e855c5781..000000000 --- a/tests/base/test126/Driver.java +++ /dev/null @@ -1,18 +0,0 @@ -public class Driver { - public static void main(String[] args) { test(); } - - public static void test() { - - // local variable declaration in the init part of a for - for (int i = 0, j = 0; j < 10 ; i++, j++) { - j++; - } - int m, n, j = 0; - - // init part without local var declaration - for (m = 0, n = 0; j < 10 ; m++, n++) { - j++; - m++; - } - } -} diff --git a/tests/base/test126/Readme.txt b/tests/base/test126/Readme.txt deleted file mode 100644 index b4b666098..000000000 --- a/tests/base/test126/Readme.txt +++ /dev/null @@ -1,7 +0,0 @@ -Mode: VM run -Title: For Statement - -This tests the weaving of For statements. More variants of the for -statement can be added to the test. The current test only checks for -variation in the init part of the for loop. - |