/******************************************************************************* * Copyright (c) 2004, 2005 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.css.tests.encoding; import junit.framework.Test; import junit.framework.TestSuite; import org.eclipse.wst.css.tests.encoding.css.CSSEncodingTester; import org.eclipse.wst.css.tests.encoding.css.CSSHeadTokenizerTester; import org.eclipse.wst.css.tests.encoding.css.TestContentTypeDetectionForCSS; public class CSSEncodingTestSuite extends TestSuite { private static Class[] classes = new Class[]{CSSEncodingTester.class, CSSHeadTokenizerTester.class, TestContentTypeDetectionForCSS.class}; public static Test suite() { return new CSSEncodingTestSuite(); } public CSSEncodingTestSuite() { super("CSS Encoding Test Suite"); for (int i = 0; i < classes.length; i++) { addTest(new TestSuite(classes[i], classes[i].getName())); } } /** * @param theClass */ public CSSEncodingTestSuite(Class theClass) { super(theClass); } /** * @param theClass * @param name */ public CSSEncodingTestSuite(Class theClass, String name) { super(theClass, name); } /** * @param name */ public CSSEncodingTestSuite(String name) { super(name); } }