You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DriversTests.java 1.2KB

1234567891011121314151617181920212223242526272829303132333435
  1. /* *******************************************************************
  2. * Copyright (c) 1999-2001 Xerox Corporation,
  3. * 2002 Palo Alto Research Center, Incorporated (PARC)
  4. * 2003 Contributors.
  5. * All rights reserved.
  6. * This program and the accompanying materials are made available
  7. * under the terms of the Eclipse Public License v1.0
  8. * which accompanies this distribution and is available at
  9. * http://www.eclipse.org/legal/epl-v10.html
  10. *
  11. * Contributors:
  12. * Xerox/PARC initial implementation
  13. * Wes Isberg added JUnit harness adapters
  14. * ******************************************************************/
  15. package org.aspectj.testing.drivers;
  16. import junit.framework.*;
  17. public class DriversTests extends TestCase {
  18. public static Test suite() {
  19. TestSuite suite = new TestSuite(DriversTests.class.getName());
  20. // AjcTestsUsingJUnit takes too long to include by default
  21. //$JUnit-BEGIN$
  22. suite.addTestSuite(HarnessSelectionTest.class);
  23. suite.addTest(AjcHarnessTestsUsingJUnit.suite());
  24. //$JUnit-END$
  25. return suite;
  26. }
  27. public DriversTests(String name) { super(name); }
  28. }