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.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*******************************************************************************
  2. * Copyright (c) 2005-2019 Contributors.
  3. * All rights reserved.
  4. * This program and the accompanying materials are made available
  5. * under the terms of the Eclipse Public License v1.0
  6. * which accompanies this distribution and is available at
  7. * http://eclipse.org/legal/epl-v10.html
  8. *******************************************************************************/
  9. package org.aspectj.loadtime;
  10. import org.aspectj.weaver.loadtime.AjTest;
  11. import org.aspectj.weaver.loadtime.ClassLoaderWeavingAdaptorTest;
  12. import org.aspectj.weaver.loadtime.JRockitAgentTest;
  13. import org.aspectj.weaver.loadtime.LoadtimeTest;
  14. import org.aspectj.weaver.loadtime.WeavingContextTest;
  15. import org.aspectj.weaver.loadtime.WeavingURLClassLoaderTest;
  16. import org.aspectj.weaver.loadtime.test.DocumentParserTest;
  17. import junit.framework.Test;
  18. import junit.framework.TestCase;
  19. import junit.framework.TestSuite;
  20. import junit.textui.TestRunner;
  21. /**
  22. * @author Andy Clement
  23. * @author Alexandre Vasseur
  24. */
  25. public class LoadtimeModuleTests extends TestCase {
  26. public static Test suite() {
  27. TestSuite suite = new TestSuite(LoadtimeModuleTests.class.getName());
  28. suite.addTestSuite(DocumentParserTest.class);
  29. suite.addTestSuite(AjTest.class);
  30. suite.addTestSuite(ClassLoaderWeavingAdaptorTest.class);
  31. suite.addTestSuite(JRockitAgentTest.class);
  32. suite.addTestSuite(LoadtimeTest.class);
  33. suite.addTestSuite(WeavingContextTest.class);
  34. suite.addTestSuite(WeavingURLClassLoaderTest.class);
  35. return suite;
  36. }
  37. public static void main(String args[]) throws Throwable {
  38. TestRunner.run(suite());
  39. }
  40. }