diff options
author | Andy Clement <aclement@gopivotal.com> | 2014-11-17 12:09:56 -0800 |
---|---|---|
committer | Andy Clement <aclement@gopivotal.com> | 2014-11-17 12:09:56 -0800 |
commit | bc35a4b7df1cb6562fcd9e3981c99ec6e0f1ceb9 (patch) | |
tree | 21d6a5f71db5b0dc26669611d1190637676d8b6a /tests/src/org/aspectj/systemtest/ajc185/Ajc185Tests.java | |
parent | df7c649b09aec710c62ec10b456e56bef1cf5550 (diff) | |
download | aspectj-bc35a4b7df1cb6562fcd9e3981c99ec6e0f1ceb9.tar.gz aspectj-bc35a4b7df1cb6562fcd9e3981c99ec6e0f1ceb9.zip |
testcode for 451966
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"); + } + +} |