From b4e0f23248e09079f646bcc4f036e3c688b93f5e Mon Sep 17 00:00:00 2001 From: Andy Clement Date: Wed, 30 Jan 2019 12:10:20 -0800 Subject: [PATCH] mavenizing ajbrowser - done --- ajbrowser/.classpath.2 | 18 ---------- .../tools/ajbrowser/AjbrowserModuleTests.java | 30 ---------------- .../tools/ajbrowser/AjbrowserTests.java | 35 ------------------- 3 files changed, 83 deletions(-) delete mode 100644 ajbrowser/.classpath.2 delete mode 100644 ajbrowser/src/test/java/org/aspectj/tools/ajbrowser/AjbrowserModuleTests.java delete mode 100644 ajbrowser/src/test/java/org/aspectj/tools/ajbrowser/AjbrowserTests.java diff --git a/ajbrowser/.classpath.2 b/ajbrowser/.classpath.2 deleted file mode 100644 index 00b22dcd6..000000000 --- a/ajbrowser/.classpath.2 +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/ajbrowser/src/test/java/org/aspectj/tools/ajbrowser/AjbrowserModuleTests.java b/ajbrowser/src/test/java/org/aspectj/tools/ajbrowser/AjbrowserModuleTests.java deleted file mode 100644 index d0d87f133..000000000 --- a/ajbrowser/src/test/java/org/aspectj/tools/ajbrowser/AjbrowserModuleTests.java +++ /dev/null @@ -1,30 +0,0 @@ -package org.aspectj.tools.ajbrowser; -/* ******************************************************************* - * Copyright (c) 1999-2001 Xerox Corporation, - * 2002 Palo Alto Research Center, Incorporated (PARC). - * 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: - * Xerox/PARC initial implementation - * ******************************************************************/ - - -// default package - -import junit.framework.*; - -public class AjbrowserModuleTests extends TestCase { - - public static TestSuite suite() { - TestSuite suite = new TestSuite(AjbrowserModuleTests.class.getName()); - suite.addTest(org.aspectj.tools.ajbrowser.AjbrowserTests.suite()); - return suite; - } - - public AjbrowserModuleTests(String name) { super(name); } - -} diff --git a/ajbrowser/src/test/java/org/aspectj/tools/ajbrowser/AjbrowserTests.java b/ajbrowser/src/test/java/org/aspectj/tools/ajbrowser/AjbrowserTests.java deleted file mode 100644 index dab5e791a..000000000 --- a/ajbrowser/src/test/java/org/aspectj/tools/ajbrowser/AjbrowserTests.java +++ /dev/null @@ -1,35 +0,0 @@ -/* ******************************************************************* - * Copyright (c) 1999-2001 Xerox Corporation, - * 2002 Palo Alto Research Center, Incorporated (PARC). - * 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: - * Xerox/PARC initial implementation - * ******************************************************************/ - - -package org.aspectj.tools.ajbrowser; - -import junit.framework.*; - -public class AjbrowserTests extends TestCase { - - public static Test suite() { - TestSuite suite = new TestSuite(AjbrowserTests.class.getName()); - suite.addTestSuite(AjbrowserTests.class); - //$JUnit-BEGIN$ - //suite.addTestSuite(BrowserManagerTest.class); - //$JUnit-END$ - return suite; - } - - public AjbrowserTests(String name) { super(name); } - - // AjBrowser is waiting for some tests - have to have a placeholder to - // keep JUnit happy... - public void testNothing() {} -} -- 2.39.5