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 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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 testSuperCalls_443355() {
  20. runTest("super calls");
  21. }
  22. public void testSuppressTypeNotFound_436653() {
  23. runTest("suppress type not found");
  24. }
  25. public void testSuppressTypeNotFound_436653_2() {
  26. runTest("suppress type not found 2");
  27. }
  28. public void testSuppressTypeNotFound_436653_3() {
  29. runTest("suppress type not found 3");
  30. }
  31. public void testSuppressTypeNotFound_436653_4() {
  32. runTest("suppress type not found 4");
  33. }
  34. public void testSuppressTypeNotFound_436653_5() {
  35. runTest("suppress type not found 5");
  36. }
  37. public void testSuppressTypeNotFound_436653_6() {
  38. runTest("suppress type not found 6");
  39. }
  40. public void testSuppressTypeNotFound_436653_7() {
  41. runTest("suppress type not found 7");
  42. }
  43. public void testSuppressTypeNotFound_436653_8() {
  44. runTest("suppress type not found 8");
  45. }
  46. public void testConstantPool_445395_0() {
  47. runTest("constant pool 0");
  48. }
  49. public void testConstantPool_445395() {
  50. runTest("constant pool");
  51. }
  52. public void testAbstractAspectNPE_444398() {
  53. runTest("abstract aspect npe");
  54. }
  55. public void testVerifyError_443447() {
  56. runTest("verifyerror");
  57. }
  58. //
  59. // public void testAnnoStyleDecp_442425() {
  60. // runTest("anno style decp");
  61. // }
  62. // ---
  63. public static Test suite() {
  64. return XMLBasedAjcTestCase.loadSuite(Ajc183Tests.class);
  65. }
  66. @Override
  67. protected File getSpecFile() {
  68. return getClassResource("ajc183.xml");
  69. }
  70. }