diff options
author | acolyer <acolyer> | 2004-12-03 11:57:18 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2004-12-03 11:57:18 +0000 |
commit | 6e3ced3d708ef77068d7235def9297725b512560 (patch) | |
tree | dccf009d2fb86757bf5b930d422e8d70f84bbf05 /weaver/testsrc/org | |
parent | 63e5dc2ba8b7bad4ceb4c472f4d289ef9b446761 (diff) | |
download | aspectj-6e3ced3d708ef77068d7235def9297725b512560.tar.gz aspectj-6e3ced3d708ef77068d7235def9297725b512560.zip |
integrate new tools tests into suite
Diffstat (limited to 'weaver/testsrc/org')
-rw-r--r-- | weaver/testsrc/org/aspectj/weaver/tools/ToolsTests.java | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/weaver/testsrc/org/aspectj/weaver/tools/ToolsTests.java b/weaver/testsrc/org/aspectj/weaver/tools/ToolsTests.java new file mode 100644 index 000000000..4abb23532 --- /dev/null +++ b/weaver/testsrc/org/aspectj/weaver/tools/ToolsTests.java @@ -0,0 +1,25 @@ +/* ******************************************************************* + * Copyright (c) 2004 IBM Corporation. + * All rights reserved. + * This program and the accompanying materials are made available + * under the terms of the Common Public License v1.0 + * which accompanies this distribution and is available at + * http://www.eclipse.org/legal/cpl-v10.html + * + * ******************************************************************/ +package org.aspectj.weaver.tools; + +import junit.framework.Test; +import junit.framework.TestSuite; + +public class ToolsTests { + + public static Test suite() { + TestSuite suite = new TestSuite("Test for org.aspectj.weaver.tools"); + //$JUnit-BEGIN$ + suite.addTestSuite(PointcutParserTest.class); + suite.addTestSuite(PointcutExpressionTest.class); + //$JUnit-END$ + return suite; + } +} |