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.

Ajc175Tests.java 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*******************************************************************************
  2. * Copyright (c) 2013 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.ajc175;
  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 Ajc175Tests extends org.aspectj.testing.XMLBasedAjcTestCase {
  19. // public void testIllegalAccessError_430243() throws Exception {
  20. // runTest("illegalaccesserror");
  21. // }
  22. public void testVertxVerifyError_423257() throws Exception {
  23. runTest("vertx verify error");
  24. }
  25. // ---
  26. public static Test suite() {
  27. return XMLBasedAjcTestCase.loadSuite(Ajc175Tests.class);
  28. }
  29. protected java.net.URL getSpecFile() {
  30. return getClassResource("ajc175.xml");
  31. }
  32. public static void main(String[] args) {
  33. }
  34. }