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

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