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.

AllTests.java 2.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* *******************************************************************
  2. * Copyright (c) 2004-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 v 2.0
  6. * which accompanies this distribution and is available at
  7. * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt
  8. *
  9. * ******************************************************************/
  10. package org.aspectj.systemtest;
  11. import org.aspectj.systemtest.ajc10x.Ajc10xTests;
  12. import org.aspectj.systemtest.ajc11.Ajc11Tests;
  13. import org.aspectj.systemtest.ajc120.Ajc120Tests;
  14. import org.aspectj.systemtest.ajc121.Ajc121Tests;
  15. import org.aspectj.systemtest.aspectpath.AspectPathTests;
  16. import org.aspectj.systemtest.base.BaseTests;
  17. import org.aspectj.systemtest.design.DesignTests;
  18. import org.aspectj.systemtest.incremental.IncrementalTests;
  19. import org.aspectj.systemtest.incremental.model.IncrementalModelTests;
  20. import org.aspectj.systemtest.incremental.tools.OutputLocationManagerTests;
  21. import org.aspectj.systemtest.inpath.InPathTests;
  22. import org.aspectj.systemtest.model.ModelTests;
  23. import org.aspectj.systemtest.options.OptionsTests;
  24. import org.aspectj.systemtest.pre10x.AjcPre10xTests;
  25. import org.aspectj.systemtest.serialVerUID.SUIDTests;
  26. import org.aspectj.systemtest.tracing.TracingTests;
  27. import org.aspectj.systemtest.xlint.XLintTests;
  28. import junit.framework.Test;
  29. import junit.framework.TestSuite;
  30. /**
  31. * @author Andy Clement
  32. * @author Adrian Colyer
  33. * @author IBM
  34. */
  35. public class AllTests {
  36. public final static boolean VERBOSE = System.getProperty("aspectj.tests.verbose", "true").equals("true");
  37. public static Test suite() {
  38. TestSuite suite = new TestSuite("AspectJ System Test Suite - JDK 1.3");
  39. //$JUnit-BEGIN$
  40. suite.addTest(Ajc121Tests.suite());
  41. suite.addTest(Ajc120Tests.suite());
  42. suite.addTest(Ajc11Tests.suite());
  43. suite.addTest(Ajc10xTests.suite());
  44. suite.addTest(AspectPathTests.suite());
  45. suite.addTest(InPathTests.suite());
  46. suite.addTest(BaseTests.suite());
  47. suite.addTest(DesignTests.suite());
  48. suite.addTest(IncrementalTests.suite());
  49. suite.addTestSuite(OutputLocationManagerTests.class);
  50. suite.addTest(IncrementalModelTests.suite());
  51. //suite.addTest(KnownLimitationsTests.class);
  52. suite.addTest(OptionsTests.suite());
  53. suite.addTest(AjcPre10xTests.suite());
  54. //suite.addTest(PureJavaTests.class);
  55. suite.addTest(SUIDTests.suite());
  56. suite.addTest(XLintTests.suite());
  57. suite.addTest(TracingTests.suite());
  58. suite.addTest(ModelTests.suite());
  59. //$JUnit-END$
  60. return suite;
  61. }
  62. }