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.

LoadtimeModuleTests.java 1.1KB

1234567891011121314151617181920212223242526272829303132333435
  1. /*******************************************************************************
  2. * Copyright (c) 2005 Contributors.
  3. * All rights reserved. This program and the accompanying materials
  4. * are made available under the terms of the Common Public License v1.0
  5. * which accompanies this distribution, and is available at
  6. * http://www.eclipse.org/legal/cpl-v10.html
  7. *
  8. * Contributors:
  9. * Alexandre Vasseur initial implementation
  10. *******************************************************************************/
  11. import junit.framework.TestCase;
  12. import junit.framework.Test;
  13. import junit.framework.TestSuite;
  14. import junit.textui.TestRunner;
  15. import org.aspectj.weaver.loadtime.test.DocumentParserTest;
  16. /**
  17. * @author <a href="mailto:alex AT gnilux DOT com">Alexandre Vasseur</a>
  18. */
  19. public class LoadtimeModuleTests extends TestCase {
  20. public static Test suite() {
  21. TestSuite suite = new TestSuite(LoadtimeModuleTests.class.getName());
  22. suite.addTestSuite(DocumentParserTest.class);
  23. return suite;
  24. }
  25. public static void main(String args[]) throws Throwable {
  26. TestRunner.run(suite());
  27. }
  28. }