diff options
Diffstat (limited to 'tests/src/org/aspectj/systemtest/ajc185/Ajc185Tests.java')
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc185/Ajc185Tests.java | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc185/Ajc185Tests.java b/tests/src/org/aspectj/systemtest/ajc185/Ajc185Tests.java new file mode 100644 index 000000000..9fefaa5eb --- /dev/null +++ b/tests/src/org/aspectj/systemtest/ajc185/Ajc185Tests.java @@ -0,0 +1,39 @@ +/******************************************************************************* + * Copyright (c) 2014 Contributors + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Andy Clement - initial API and implementation + *******************************************************************************/ +package org.aspectj.systemtest.ajc185; + +import java.io.File; + +import junit.framework.Test; + +import org.aspectj.testing.XMLBasedAjcTestCase; + +/** + * @author Andy Clement + */ +public class Ajc185Tests extends org.aspectj.testing.XMLBasedAjcTestCase { + + public void testITDInterface_451966() throws Exception { + runTest("itd interface"); + } + + // --- + + public static Test suite() { + return XMLBasedAjcTestCase.loadSuite(Ajc185Tests.class); + } + + @Override + protected File getSpecFile() { + return getClassResource("ajc185.xml"); + } + +} |