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.

Ajc183Tests.java 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*******************************************************************************
  2. * Copyright (c) 2014 Contributors
  3. * All rights reserved. This program and the accompanying materials
  4. * are made available under the terms of the Eclipse Public License v1.0
  5. * which accompanies this distribution, and is available at
  6. * http://www.eclipse.org/legal/epl-v10.html
  7. *
  8. * Contributors:
  9. * Andy Clement - initial API and implementation
  10. *******************************************************************************/
  11. package org.aspectj.systemtest.ajc183;
  12. import java.io.File;
  13. import junit.framework.Test;
  14. import org.aspectj.testing.XMLBasedAjcTestCase;
  15. /**
  16. * @author Andy Clement
  17. */
  18. public class Ajc183Tests extends org.aspectj.testing.XMLBasedAjcTestCase {
  19. public void testConstantPool_445395_0() {
  20. runTest("constant pool 0");
  21. }
  22. public void testConstantPool_445395() {
  23. runTest("constant pool");
  24. }
  25. public void testAbstractAspectNPE_444398() {
  26. runTest("abstract aspect npe");
  27. }
  28. // public void testVerifyError_443447() {
  29. // runTest("verifyerror");
  30. // }
  31. //
  32. // public void testAnnoStyleDecp_442425() {
  33. // runTest("anno style decp");
  34. // }
  35. // ---
  36. public static Test suite() {
  37. return XMLBasedAjcTestCase.loadSuite(Ajc183Tests.class);
  38. }
  39. @Override
  40. protected File getSpecFile() {
  41. return getClassResource("ajc183.xml");
  42. }
  43. }