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.

Bugs1921Tests.java 1.1KB

1234567891011121314151617181920212223242526272829303132333435
  1. /*******************************************************************************
  2. * Copyright (c) 2023 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. package org.aspectj.systemtest.ajc1921;
  9. import junit.framework.Test;
  10. import org.aspectj.testing.XMLBasedAjcTestCase;
  11. /**
  12. * @author Alexander Kriegisch
  13. */
  14. public class Bugs1921Tests extends XMLBasedAjcTestCase {
  15. public void testGitHub_279() {
  16. runTest("same class woven concurrently in parallel-capable classloader");
  17. }
  18. public void testGitHub_285() {
  19. runTest("shared cache negative test");
  20. }
  21. public static Test suite() {
  22. return XMLBasedAjcTestCase.loadSuite(Bugs1921Tests.class);
  23. }
  24. @Override
  25. protected java.net.URL getSpecFile() {
  26. return getClassResource("ajc1921.xml");
  27. }
  28. }