summaryrefslogtreecommitdiffstats
path: root/runtime/testsrc/RuntimeModuleTests.java
diff options
context:
space:
mode:
authoracolyer <acolyer>2004-08-09 12:48:11 +0000
committeracolyer <acolyer>2004-08-09 12:48:11 +0000
commitf6436e3fc84f7e140acb3a250a29fe38f9c20c35 (patch)
treed054d6e062fa72f20747d7abe4df4a211b9ccfa5 /runtime/testsrc/RuntimeModuleTests.java
parent851da68a07bcbfac4414fadc1b9f3bc02fa810a5 (diff)
downloadaspectj-f6436e3fc84f7e140acb3a250a29fe38f9c20c35.tar.gz
aspectj-f6436e3fc84f7e140acb3a250a29fe38f9c20c35.zip
fix for Bugzilla Bug 67592 value in the args[] array of thisJoinPoint can be changed....
Diffstat (limited to 'runtime/testsrc/RuntimeModuleTests.java')
-rw-r--r--runtime/testsrc/RuntimeModuleTests.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/testsrc/RuntimeModuleTests.java b/runtime/testsrc/RuntimeModuleTests.java
index b8f2d7408..61bc7a869 100644
--- a/runtime/testsrc/RuntimeModuleTests.java
+++ b/runtime/testsrc/RuntimeModuleTests.java
@@ -16,6 +16,7 @@
import java.io.*;
import org.aspectj.lang.*;
+import org.aspectj.runtime.reflect.JoinPointImplTest;
import org.aspectj.runtime.reflect.SignatureTest;
import junit.framework.*;
@@ -26,6 +27,7 @@ public class RuntimeModuleTests extends TestCase {
TestSuite suite = new TestSuite(RuntimeModuleTests.class.getName());
suite.addTestSuite(RuntimeModuleTests.class); // minimum 1 test (testNothing)
suite.addTestSuite(SignatureTest.class);
+ suite.addTestSuite(JoinPointImplTest.class);
return suite;
}