org.aspectj/testing-drivers/testsrc/org/aspectj/testing/TestingDriversModuleTests.java

37 lines
1.1 KiB
Java
Raw Normal View History

package org.aspectj.testing;
2002-12-16 22:46:19 +01:00
/* *******************************************************************
* Copyright (c) 1999-2001 Xerox Corporation,
* 2002 Palo Alto Research Center, Incorporated (PARC).
* All rights reserved.
* This program and the accompanying materials are made available
2006-06-01 11:33:56 +02:00
* under the terms of the Eclipse Public License v1.0
2002-12-16 22:46:19 +01:00
* which accompanies this distribution and is available at
2006-06-01 11:33:56 +02:00
* http://www.eclipse.org/legal/epl-v10.html
2002-12-16 22:46:19 +01:00
*
* Contributors:
* Xerox/PARC initial implementation
* ******************************************************************/
// default package
import org.aspectj.testing.drivers.DriversTests;
import junit.framework.*;
import junit.framework.Test;
/**
* TODO weaver dumping ajcore files when using this interface
*/
2002-12-16 22:46:19 +01:00
public class TestingDriversModuleTests extends TestCase {
public static Test suite() {
TestSuite suite = new TestSuite(TestingDriversModuleTests.class.getName());
suite.addTest(DriversTests.suite());
return suite;
}
public TestingDriversModuleTests(String name) { super(name); }
}