aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/org/aspectj/systemtest/ajc185/Ajc185Tests.java
diff options
context:
space:
mode:
authorAndy Clement <aclement@gopivotal.com>2014-11-17 12:09:56 -0800
committerAndy Clement <aclement@gopivotal.com>2014-11-17 12:09:56 -0800
commitbc35a4b7df1cb6562fcd9e3981c99ec6e0f1ceb9 (patch)
tree21d6a5f71db5b0dc26669611d1190637676d8b6a /tests/src/org/aspectj/systemtest/ajc185/Ajc185Tests.java
parentdf7c649b09aec710c62ec10b456e56bef1cf5550 (diff)
downloadaspectj-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.java39
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");
+ }
+
+}