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.

NewFeatures.java 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*******************************************************************************
  2. * Copyright (c) 2010 Lucierna
  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. * Abraham Nevado - initial API and implementation
  10. *******************************************************************************/
  11. package org.aspectj.systemtest.ajc1611;
  12. import org.aspectj.testing.XMLBasedAjcTestCase;
  13. import junit.framework.Test;
  14. public class NewFeatures extends org.aspectj.testing.XMLBasedAjcTestCase {
  15. public void testAddingRemoving() {
  16. runTest("adding and removing");
  17. }
  18. public void testAddingRemoving2() {
  19. runTest("adding and removing - 2");
  20. }
  21. public void testAddingRemoving3() {
  22. runTest("adding and removing - 3");
  23. }
  24. public void testDeclareMinus() {
  25. runTest("declare minus - 1");
  26. }
  27. public void testDeclareMinusItd() {
  28. runTest("declare minus - itd");
  29. }
  30. public void testDeclareMinus2annos() {
  31. runTest("declare minus - 2 annos");
  32. }
  33. public void testDeclareMinusmultifiles() {
  34. runTest("declare minus - multifiles");
  35. }
  36. public void testDeclareMinusmultifiles2() {
  37. runTest("declare minus - multifiles - 2");
  38. }
  39. public void testDeclareMinusmultifiles3() {
  40. runTest("declare minus - multifiles - 3");
  41. }
  42. public void testDeclareMinusWithValues() {
  43. runTest("declare minus - with values");
  44. }
  45. public void testDeclareMinusUnsupported() {
  46. runTest("declare minus - unsupported");
  47. }
  48. public void testBinaryWeaving() {
  49. runTest("binary weaving");
  50. }
  51. public static Test suite() {
  52. return XMLBasedAjcTestCase.loadSuite(NewFeatures.class);
  53. }
  54. protected java.net.URL getSpecFile() {
  55. return getClassResource("newfeatures-tests.xml");
  56. }
  57. }