blob: 2cce47b7e51e40e412c0ab783ee89f1edc789eb3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 Sybase, Inc. and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Sybase, Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.jsf.facesconfig.ui.test;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.jst.jsf.facesconfig.ui.section.ComponentsPageTest;
import org.eclipse.jst.jsf.facesconfig.ui.wizard.NewManagedBeanWizardTest;
/**
* The test suite for faces config editor. Before run it, make sure that this
* plugin is in the same folder with "org.eclipse.jst.jsf.facesconfig.ui"
* plugin.
*
* @author sfshi
*
*/
public class AllTestCases {
public static Test suite() {
TestSuite suite = new TestSuite("Test Suite for FacesConfig Editor");
suite.addTestSuite(OpenADFDemoFacesConfigTest.class);
suite.addTestSuite(ComponentsPageTest.class);
suite.addTestSuite(WebrootUtilTest.class);
suite.addTestSuite(ManagedBeanUtilTest.class);
suite.addTestSuite(JSPUtilTest.class);
suite.addTestSuite(GEMPreferencesTest.class);
suite.addTestSuite(NewManagedBeanWizardTest.class);
suite.addTestSuite(PageflowEditorTest.class);
// 246164 - Invalid JUnit test - to be uncommented when test is fixed
// suite.addTestSuite(TestNotificationsOnNonUIThread.class);
return suite;
}
}