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.

AjdeCoreModuleTests.java 942B

12345678910111213141516171819202122232425262728
  1. /********************************************************************
  2. * Copyright (c) 2007 Contributors. All rights reserved.
  3. * This program and the accompanying materials are made available
  4. * under the terms of the Eclipse Public License v1.0
  5. * which accompanies this distribution and is available at
  6. * http://eclipse.org/legal/epl-v10.html
  7. *
  8. * Contributors: IBM Corporation - initial API and implementation
  9. * Helen Hawkins - initial version
  10. *******************************************************************/
  11. package org.aspectj.ajde.core;
  12. import junit.framework.TestCase;
  13. import junit.framework.TestSuite;
  14. public class AjdeCoreModuleTests extends TestCase {
  15. public static TestSuite suite() {
  16. TestSuite suite = new TestSuite(AjdeCoreModuleTests.class.getName());
  17. suite.addTest(org.aspectj.ajde.core.AjdeCoreTests.suite());
  18. return suite;
  19. }
  20. public AjdeCoreModuleTests(String name) {
  21. super(name);
  22. }
  23. }