Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

JointpointIdTests.java 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*******************************************************************************
  2. * Copyright (c) 2008 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.ajc164;
  12. import java.io.File;
  13. import junit.framework.Test;
  14. import org.aspectj.testing.XMLBasedAjcTestCase;
  15. /**
  16. *
  17. * @author Andy Clement
  18. */
  19. public class JointpointIdTests extends org.aspectj.testing.XMLBasedAjcTestCase {
  20. public void testCaseA() {
  21. runTest("casea");
  22. }
  23. // --
  24. public static Test suite() {
  25. return XMLBasedAjcTestCase.loadSuite(JointpointIdTests.class);
  26. }
  27. protected java.net.URL getSpecFile() {
  28. return getClassResource("joinpointid.xml");
  29. }
  30. }