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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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 v 2.0
  5. * which accompanies this distribution, and is available at
  6. * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt
  7. *
  8. * Contributors:
  9. * Andy Clement - initial API and implementation
  10. *******************************************************************************/
  11. package org.aspectj.systemtest.ajc183;
  12. import org.aspectj.testing.XMLBasedAjcTestCase;
  13. import junit.framework.Test;
  14. /**
  15. * @author Andy Clement
  16. */
  17. public class Ajc183Tests extends org.aspectj.testing.XMLBasedAjcTestCase {
  18. public void testSuperCalls_443355() {
  19. runTest("super calls");
  20. }
  21. public void testSuppressTypeNotFoundAbstract_436653_2() {
  22. runTest("suppress type not found - abstract 2");
  23. }
  24. public void testSuppressTypeNotFoundAbstract_436653_1() {
  25. runTest("suppress type not found - abstract 1");
  26. }
  27. public void testSuppressTypeNotFound_436653() {
  28. runTest("suppress type not found");
  29. }
  30. public void testSuppressTypeNotFound_436653_2() {
  31. runTest("suppress type not found 2");
  32. }
  33. public void testSuppressTypeNotFound_436653_3() {
  34. runTest("suppress type not found 3");
  35. }
  36. public void testSuppressTypeNotFound_436653_4() {
  37. runTest("suppress type not found 4");
  38. }
  39. public void testSuppressTypeNotFound_436653_5() {
  40. runTest("suppress type not found 5");
  41. }
  42. public void testSuppressTypeNotFound_436653_6() {
  43. runTest("suppress type not found 6");
  44. }
  45. public void testSuppressTypeNotFound_436653_7() {
  46. runTest("suppress type not found 7");
  47. }
  48. public void testSuppressTypeNotFound_436653_8() {
  49. runTest("suppress type not found 8");
  50. }
  51. public void testConstantPool_445395_0() {
  52. runTest("constant pool 0");
  53. }
  54. public void testConstantPool_445395() {
  55. runTest("constant pool");
  56. }
  57. public void testAbstractAspectNPE_444398() {
  58. runTest("abstract aspect npe");
  59. }
  60. public void testVerifyError_443447() {
  61. runTest("verifyerror");
  62. }
  63. public void testAnnoStyleDecp_442425() {
  64. runTest("anno style decp");
  65. }
  66. // ---
  67. public static Test suite() {
  68. return XMLBasedAjcTestCase.loadSuite(Ajc183Tests.class);
  69. }
  70. @Override
  71. protected java.net.URL getSpecFile() {
  72. return getClassResource("ajc183.xml");
  73. }
  74. }