From eb31ec6c3d7016f7b57210f61c27daa54118c263 Mon Sep 17 00:00:00 2001 From: mwebster Date: Sun, 30 Jul 2006 18:20:50 +0000 Subject: Bug 113948 "Repackage AspectJ" (move module root suites out of default package) --- .../org/aspectj/loadtime/LoadtimeModuleTests.java | 47 ++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 loadtime/testsrc/org/aspectj/loadtime/LoadtimeModuleTests.java (limited to 'loadtime/testsrc/org/aspectj') diff --git a/loadtime/testsrc/org/aspectj/loadtime/LoadtimeModuleTests.java b/loadtime/testsrc/org/aspectj/loadtime/LoadtimeModuleTests.java new file mode 100644 index 000000000..da7509b6f --- /dev/null +++ b/loadtime/testsrc/org/aspectj/loadtime/LoadtimeModuleTests.java @@ -0,0 +1,47 @@ +package org.aspectj.loadtime; +/******************************************************************************* + * Copyright (c) 2005 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://eclipse.org/legal/epl-v10.html + * + * Contributors: + * Alexandre Vasseur initial implementation + *******************************************************************************/ + +import junit.framework.TestCase; +import junit.framework.Test; +import junit.framework.TestSuite; +import junit.textui.TestRunner; + +import org.aspectj.weaver.loadtime.AjTest; +import org.aspectj.weaver.loadtime.ClassLoaderWeavingAdaptorTest; +import org.aspectj.weaver.loadtime.JRockitAgentTest; +import org.aspectj.weaver.loadtime.WeavingContextTest; +import org.aspectj.weaver.loadtime.WeavingURLClassLoaderTest; +import org.aspectj.weaver.loadtime.test.DocumentParserTest; + +/** + * @author Alexandre Vasseur + */ +public class LoadtimeModuleTests extends TestCase { + + public static Test suite() { + TestSuite suite = new TestSuite(LoadtimeModuleTests.class.getName()); + + suite.addTestSuite(DocumentParserTest.class); + suite.addTestSuite(AjTest.class); + suite.addTestSuite(ClassLoaderWeavingAdaptorTest.class); + suite.addTestSuite(JRockitAgentTest.class); + suite.addTestSuite(WeavingContextTest.class); + suite.addTestSuite(WeavingURLClassLoaderTest.class); + return suite; + } + + public static void main(String args[]) throws Throwable { + TestRunner.run(suite()); + } + +} -- cgit v1.2.3