diff options
author | avasseur <avasseur> | 2005-04-20 12:46:46 +0000 |
---|---|---|
committer | avasseur <avasseur> | 2005-04-20 12:46:46 +0000 |
commit | c303cd5db5a811bfba8feef4eb9cb6876919a423 (patch) | |
tree | b139a66611b039c4a02874835b175f9fabf57859 /testing-util/testsrc/TestingUtilModuleTests.java | |
parent | 6906800a16da50158ed9f767d36dbf6ff24d5022 (diff) | |
download | aspectj-c303cd5db5a811bfba8feef4eb9cb6876919a423.tar.gz aspectj-c303cd5db5a811bfba8feef4eb9cb6876919a423.zip |
refactored to avoid clash and duplicate class with modules/testing. Package for modules/testing-util is now org.aspectj.testingutil
Diffstat (limited to 'testing-util/testsrc/TestingUtilModuleTests.java')
-rw-r--r-- | testing-util/testsrc/TestingUtilModuleTests.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/testing-util/testsrc/TestingUtilModuleTests.java b/testing-util/testsrc/TestingUtilModuleTests.java index 32084c1a2..a81847cb2 100644 --- a/testing-util/testsrc/TestingUtilModuleTests.java +++ b/testing-util/testsrc/TestingUtilModuleTests.java @@ -14,17 +14,16 @@ // default package -import org.aspectj.testing.util.UtilTests; - import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; +import org.aspectj.testingutil.UtilTests; public class TestingUtilModuleTests extends TestCase { public static Test suite() { TestSuite suite = new TestSuite(TestingUtilModuleTests.class.getName()); - suite.addTest(UtilTests.suite()); + suite.addTest(UtilTests.suite()); return suite; } |