blob: ca4fdaf6b2a5582307b1c5c4669646b4226d14aa [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 Standards for Technology in Automotive Retail 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:
* David Carver - (STAR) - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.xsl.ui.tests;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.wst.xsl.ui.internal.contentassist.CallTemplateContentAssistRequest;
import org.eclipse.wst.xsl.ui.internal.validation.TestDelegatingSourceValidatorForXSL;
import org.eclipse.wst.xsl.ui.tests.editor.TestCallTemplateCompletionProposal;
import org.eclipse.wst.xsl.ui.tests.editor.TestElementCompletionProposal;
import org.eclipse.wst.xsl.ui.tests.editor.TestExcludeResultPrefixesCompletionProposal;
import org.eclipse.wst.xsl.ui.tests.editor.TestHrefCompletionProposal;
import org.eclipse.wst.xsl.ui.tests.editor.TestNamedTemplateCompletionProposal;
import org.eclipse.wst.xsl.ui.tests.editor.TestTemplateModeCompletionProposal;
import org.eclipse.wst.xsl.ui.tests.editor.XSLCompletionTest;
import org.eclipse.wst.xsl.ui.tests.hyperlinkdetector.TestXSLHyperlinkDetector;
import org.eclipse.wst.xsl.ui.tests.style.TestXMLRegionMap;
import org.eclipse.wst.xsl.ui.tests.style.TestXSLLineStyleProvider;
import org.eclipse.wst.xsl.ui.tests.style.TestXSLRegionMap;
public class XSLUITestSuite extends TestSuite {
public static Test suite() {
return new XSLUITestSuite();
}
public XSLUITestSuite() {
super("XSL UI Test Suite");
addTestSuite(TestDelegatingSourceValidatorForXSL.class);
addTestSuite(XSLCompletionTest.class);
addTestSuite(TestExcludeResultPrefixesCompletionProposal.class);
addTestSuite(TestTemplateModeCompletionProposal.class);
addTestSuite(TestHrefCompletionProposal.class);
addTestSuite(TestElementCompletionProposal.class);
addTestSuite(TestXSLLineStyleProvider.class);
addTestSuite(TestXMLRegionMap.class);
addTestSuite(TestXSLRegionMap.class);
addTestSuite(TestXSLHyperlinkDetector.class);
addTestSuite(TestNamedTemplateCompletionProposal.class);
addTestSuite(TestCallTemplateCompletionProposal.class);
}
}