Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

Ajc171Tests.java 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*******************************************************************************
  2. * Copyright (c) 2008-2012 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.ajc171;
  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 Ajc171Tests extends org.aspectj.testing.XMLBasedAjcTestCase {
  19. // public void testMultipleAnnos_356594() {
  20. // runTest("multiple annos 1");
  21. // }
  22. // ---
  23. public static Test suite() {
  24. return XMLBasedAjcTestCase.loadSuite(Ajc171Tests.class);
  25. }
  26. @Override
  27. protected File getSpecFile() {
  28. return new File("../tests/src/org/aspectj/systemtest/ajc171/ajc171.xml");
  29. }
  30. }