diff options
Diffstat (limited to 'development/org.eclipse.wst.sse.unittests/src/org/eclipse')
2 files changed, 0 insertions, 121 deletions
diff --git a/development/org.eclipse.wst.sse.unittests/src/org/eclipse/wst/sse/unittests/MasterListTestSuite.java b/development/org.eclipse.wst.sse.unittests/src/org/eclipse/wst/sse/unittests/MasterListTestSuite.java deleted file mode 100644 index dfcb5c7187..0000000000 --- a/development/org.eclipse.wst.sse.unittests/src/org/eclipse/wst/sse/unittests/MasterListTestSuite.java +++ /dev/null @@ -1,70 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2004 IBM Corporation and others. - * 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: - * IBM Corporation - initial API and implementation - * - *******************************************************************************/ - -package org.eclipse.wst.sse.unittests; - -import junit.framework.TestSuite; - -import org.eclipse.jst.jsp.core.tests.JSPCoreTestSuite; -import org.eclipse.jst.jsp.tests.encoding.JSPEncodingTestSuite; -import org.eclipse.jst.jsp.ui.tests.JSPUITestSuite; -import org.eclipse.wst.css.core.tests.CSSCoreTestSuite; -import org.eclipse.wst.css.tests.encoding.CSSEncodingTestSuite; -import org.eclipse.wst.html.core.tests.HTMLCoreTestSuite; -import org.eclipse.wst.html.tests.encoding.HTMLEncodingTestSuite; -import org.eclipse.wst.html.ui.tests.HTMLUITestSuite; -import org.eclipse.wst.sse.core.tests.SSEModelTestSuite; -import org.eclipse.wst.sse.ui.tests.SSEUITestSuite; -import org.eclipse.wst.xml.core.tests.SSEModelXMLTestSuite; -import org.eclipse.wst.xml.tests.encoding.EncodingTestSuite; -import org.eclipse.wst.xml.ui.tests.XMLUITestSuite; -import org.eclipse.wst.xml.validation.tests.internal.AllXMLTests; - -/***************************************************************************** - * Copyright (c) 2004 IBM Corporation and others. 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: IBM Corporation - initial API and implementation - * - ****************************************************************************/ - -public class MasterListTestSuite extends TestSuite { - - public MasterListTestSuite() { - super("All Tests"); - - addTest(SSEModelTestSuite.suite()); - addTest(SSEModelXMLTestSuite.suite()); - addTest(CSSCoreTestSuite.suite()); - addTest(HTMLCoreTestSuite.suite()); - addTest(JSPCoreTestSuite.suite()); - - //addTest(AllXMLTests.suite()); - - addTest(EncodingTestSuite.suite()); - addTest(CSSEncodingTestSuite.suite()); - addTest(HTMLEncodingTestSuite.suite()); - addTest(JSPEncodingTestSuite.suite()); - - addTest(HTMLUITestSuite.suite()); - addTest(SSEUITestSuite.suite()); - addTest(XMLUITestSuite.suite()); - addTest(JSPUITestSuite.suite()); - - } - - public void testAll() { - // this method needs to exist, but doesn't really do anything - } -} diff --git a/development/org.eclipse.wst.sse.unittests/src/org/eclipse/wst/sse/unittests/MasterPerformanceTestSuite.java b/development/org.eclipse.wst.sse.unittests/src/org/eclipse/wst/sse/unittests/MasterPerformanceTestSuite.java deleted file mode 100644 index 8491014ef0..0000000000 --- a/development/org.eclipse.wst.sse.unittests/src/org/eclipse/wst/sse/unittests/MasterPerformanceTestSuite.java +++ /dev/null @@ -1,51 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2004 IBM Corporation and others. - * 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: - * IBM Corporation - initial API and implementation - * - *******************************************************************************/ - -package org.eclipse.wst.sse.unittests; - -import junit.framework.TestSuite; - -import org.eclipse.jst.jsp.ui.tests.performance.JSPUIPerformanceTests; -import org.eclipse.wst.css.ui.tests.performance.CSSUIPerformanceTestSuite; -import org.eclipse.wst.html.ui.tests.performance.HTMLUIPerformanceTestSuite; -import org.eclipse.wst.sse.ui.tests.performance.SSEUIPerformanceTestSuite; -import org.eclipse.wst.xml.ui.tests.performance.XMLUIPerformanceTestSuite; - -/***************************************************************************** - * Copyright (c) 2004 IBM Corporation and others. 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: IBM Corporation - initial API and implementation - * - ****************************************************************************/ - -public class MasterPerformanceTestSuite extends TestSuite { - - public MasterPerformanceTestSuite() { - super("All Tests"); - - addTest(JSPUIPerformanceTests.suite()); - addTest(CSSUIPerformanceTestSuite.suite()); - addTest(HTMLUIPerformanceTestSuite.suite()); - addTest(SSEUIPerformanceTestSuite.suite()); - addTest(XMLUIPerformanceTestSuite.suite()); - - - } - - public void testAll() { - // this method needs to exist, but doesn't really do anything - } - -} |