diff options
Diffstat (limited to 'tests/src/org/aspectj/systemtest/ajc166/AllTestsAspectJ166.java')
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc166/AllTestsAspectJ166.java | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc166/AllTestsAspectJ166.java b/tests/src/org/aspectj/systemtest/ajc166/AllTestsAspectJ166.java new file mode 100644 index 000000000..417b6ec3d --- /dev/null +++ b/tests/src/org/aspectj/systemtest/ajc166/AllTestsAspectJ166.java @@ -0,0 +1,25 @@ +/******************************************************************************* + * Copyright (c) 2008 Contributors + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Andy Clement - initial API and implementation + *******************************************************************************/ +package org.aspectj.systemtest.ajc166; + +import junit.framework.Test; +import junit.framework.TestSuite; + +public class AllTestsAspectJ166 { + + public static Test suite() { + TestSuite suite = new TestSuite("AspectJ 1.6.5 tests"); + // $JUnit-BEGIN$ + suite.addTest(Ajc166Tests.suite()); + // $JUnit-END$ + return suite; + } +} |