Author: yradtsevich
Date: 2011-03-16 16:33:01 -0400 (Wed, 16 Mar 2011)
New Revision: 29828
Removed:
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/JsfComponentTest.java
trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/src/org/jboss/tools/jsf/vpe/richfaces/test/RichFacesComponentTest.java
trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/src/org/jboss/tools/jsf/vpe/seam/test/SeamComponentTest.java
trunk/vpe/tests/org.jboss.tools.vpe.html.test/src/org/jboss/tools/vpe/html/test/HtmlComponentTest.java
Modified:
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/JsfAllTests.java
trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/src/org/jboss/tools/jsf/vpe/richfaces/test/RichFacesAllTests.java
trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/src/org/jboss/tools/jsf/vpe/seam/test/SeamAllTests.java
trunk/vpe/tests/org.jboss.tools.vpe.html.test/src/org/jboss/tools/vpe/html/test/HtmlAllTests.java
Log:
https://issues.jboss.org/browse/JBIDE-8487 : Decrease quantity of junit tests
- removed *ComponentTest's that are duplicated by *ComponentContentTest's
Modified:
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/JsfAllTests.java
===================================================================
---
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/JsfAllTests.java 2011-03-16
19:31:01 UTC (rev 29827)
+++
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/JsfAllTests.java 2011-03-16
20:33:01 UTC (rev 29828)
@@ -147,7 +147,6 @@
suite.addTestSuite(OpenOnJsf20Test_JBIDE5382.class);
suite.addTestSuite(MozDirtyTest_JBIDE5105.class);
suite.addTestSuite(VpeI18nTest_JBIDE4887.class);
- suite.addTestSuite(JsfComponentTest.class);
suite.addTestSuite(JBIDE3519Test.class);
suite.addTestSuite(ContextMenuDoubleInsertionTest_JBIDE3888.class);
suite.addTestSuite(SelectAllAndCut_JBIDE4853.class);
Deleted:
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/JsfComponentTest.java
===================================================================
---
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/JsfComponentTest.java 2011-03-16
19:31:01 UTC (rev 29827)
+++
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/JsfComponentTest.java 2011-03-16
20:33:01 UTC (rev 29828)
@@ -1,216 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2007 Red Hat, Inc.
- * Distributed under license by Red Hat, Inc. All rights reserved.
- * This program is 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:
- * Red Hat, Inc. - initial API and implementation
- ******************************************************************************/
-package org.jboss.tools.jsf.vpe.jsf.test;
-
-import org.eclipse.core.resources.IFile;
-import org.jboss.tools.vpe.base.test.TestUtil;
-import org.jboss.tools.vpe.base.test.VpeTest;
-
-/**
- * Class for testing all jsf components
- *
- * @author sdzmitrovich
- *
- */
-public class JsfComponentTest extends VpeTest {
-
- // import project name
- public static final String IMPORT_PROJECT_NAME = "jsfTest";
-
- public JsfComponentTest(String name) {
- super(name);
- setCheckWarning(false);
- }
-
- /*
- * JSF HTML test cases
- */
-
- public void testCommandButton() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/commandButton.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testCommandLink() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/commandLink.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testDataTable() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/dataTable.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testForm() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/form.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testGraphicImage() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/graphicImage.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testInputHidden() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/inputHidden.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testInputSecret() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/inputSecret.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testInputText() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/inputText.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testInputTextArea() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/inputTextArea.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testMessage() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/message.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testMessages() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/messages.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testOutputFormat() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/outputFormat.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testOutputLabel() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/outputLabel.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testOutputLink() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/outputLink.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testOutputText() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/outputText.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testPanelGrid() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/panelGrid.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testPanelGroup() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/panelGroup.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testSelectBooleanCheckbox() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/selectBooleanCheckbox.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testSelectManyCheckbox() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/selectManyCheckbox.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testSelectManyListbox() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/selectManyListbox.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testSelectManyMenu() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/selectManyMenu.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testSelectOneListbox() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/selectOneListbox.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testSelectOneMenu() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/selectOneMenu.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testSelectOneRadio() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/selectOneRadio.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- /*
- * JSF Core test cases
- */
-
- public void testActionListener() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/actionListener.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testAttribute() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/attribute.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testConvertDateTime() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/convertDateTime.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testConvertNumber() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/convertNumber.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testConverter() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/converter.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testFacet() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/facet.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testLoadBundle() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/loadBundle.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testParam() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/param.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testPhaseListener() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/phaseListener.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testSelectItem() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/selectItem.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testSelectItems() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/selectItems.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testSetPropertyActionListener() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/setPropertyActionListener.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testSubview() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/subview.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testValidateDoubleRange() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/validateDoubleRange.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testValidateLength() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/validateLength.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testValidateLongRange() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/validateLongRange.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testValidator() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/validator.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testValueChangeListener() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/valueChangeListener.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testVerbatim() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/verbatim.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testView() throws Throwable {
- performTestForVpeComponent((IFile)
TestUtil.getComponentPath("components/view.jsp",IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-}
Modified:
trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/src/org/jboss/tools/jsf/vpe/richfaces/test/RichFacesAllTests.java
===================================================================
---
trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/src/org/jboss/tools/jsf/vpe/richfaces/test/RichFacesAllTests.java 2011-03-16
19:31:01 UTC (rev 29827)
+++
trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/src/org/jboss/tools/jsf/vpe/richfaces/test/RichFacesAllTests.java 2011-03-16
20:33:01 UTC (rev 29828)
@@ -40,7 +40,6 @@
TestSuite suite = new TestSuite("Tests for Vpe RichFaces components"); //
$NON //$NON-NLS-1$
// $JUnit-BEGIN$
- suite.addTestSuite(RichFacesComponentTest.class);
suite.addTestSuite(JBIDE1579Test.class);
suite.addTestSuite(Jbide1580Test.class);
suite.addTestSuite(JBIDE1613Test.class);
Deleted:
trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/src/org/jboss/tools/jsf/vpe/richfaces/test/RichFacesComponentTest.java
===================================================================
---
trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/src/org/jboss/tools/jsf/vpe/richfaces/test/RichFacesComponentTest.java 2011-03-16
19:31:01 UTC (rev 29827)
+++
trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/src/org/jboss/tools/jsf/vpe/richfaces/test/RichFacesComponentTest.java 2011-03-16
20:33:01 UTC (rev 29828)
@@ -1,236 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2007 Exadel, Inc. and Red Hat, Inc.
- * Distributed under license by Red Hat, Inc. All rights reserved.
- * This program is 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:
- * Exadel, Inc. and Red Hat, Inc. - initial API and implementation
- ******************************************************************************/
-package org.jboss.tools.jsf.vpe.richfaces.test;
-
-import org.eclipse.core.resources.IFile;
-import org.eclipse.ui.PartInitException;
-import org.jboss.tools.vpe.base.test.TestUtil;
-import org.jboss.tools.vpe.base.test.VpeTest;
-
-/**
- * Class for testing all RichFaces components
- *
- * @author dsakovich(a)exadel.com
- *
- */
-public class RichFacesComponentTest extends VpeTest {
-
- public RichFacesComponentTest(String name) {
- super(name);
- setCheckWarning(false);
- }
-
-
- public void testAllComponentsOnSinglePage() throws PartInitException,
- Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/richFacesTest.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
- public void testCalendar() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/calendar.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testDataDefinitionList() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/dataDefinitionList.xhtml",
RichFacesAllTests.IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testDataFilterSlider() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/dataFilterSlider.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testDataGrid() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/dataGrid.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testDataList() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/dataList.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testDataOrderedList() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/dataOrderedList.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testDataScroller() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/datascroller.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testDataTable() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/dataTable.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testDragAndDrop() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/dragAndDrop.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testDropDownMenu() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/dropDownMenu.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testEffect() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/effect.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testGoogleMap() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/googleMap.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testInputNumberSlider() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/inputNumberSlider.xhtml",
RichFacesAllTests.IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testInputNumberSpinner() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/inputNumberSpinner.xhtml",
RichFacesAllTests.IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testInsert() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/insert.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testMessage() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/message.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testMessages() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/messages.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testModalPanel() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/modalPanel.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testOrderingList() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/orderingList.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testPaint2D() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/paint2D.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testPanel() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/panel.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testPanelBar() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/panelBar.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testPanelMenu() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/panelMenu.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testScrollableDataTable() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/scrollableDataTable.xhtml",
RichFacesAllTests.IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testSeparator() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/separator.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testSimpleTogglePanel() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/simpleTogglePanel.xhtml",
RichFacesAllTests.IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testSpacer() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/spacer.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testSuggestionBox() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/suggestionbox.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testTabPanel() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/tabPanel.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testTogglePanel() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/togglePanel.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testToolBar() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/toolBar.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testTree() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/tree.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testVirtualEarth() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/virtualEarth.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testComponentControl() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/componentControl.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testContextMenu() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/contextMenu.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testListShuttle() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/listShuttle.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testSubTable() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/subTable.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void collapsiblePanel() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/collapsiblePanel.xhtml",
RichFacesAllTests.IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testAccordion() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/accordion.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testAccordionItem() throws PartInitException, Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/accordionItem.xhtml",
RichFacesAllTests.IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-}
Modified:
trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/src/org/jboss/tools/jsf/vpe/seam/test/SeamAllTests.java
===================================================================
---
trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/src/org/jboss/tools/jsf/vpe/seam/test/SeamAllTests.java 2011-03-16
19:31:01 UTC (rev 29827)
+++
trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/src/org/jboss/tools/jsf/vpe/seam/test/SeamAllTests.java 2011-03-16
20:33:01 UTC (rev 29828)
@@ -29,7 +29,6 @@
public static Test suite() {
TestSuite suite = new TestSuite("Tests for Vpe Seam components");
//$NON-NLS-1$
// $JUnit-BEGIN$
- suite.addTestSuite(SeamComponentTest.class);
suite.addTestSuite(SeamComponentContentTest.class);
suite.addTestSuite(JBIDE1484Test.class);
suite.addTestSuite(OpenOnForDecorateTest.class);
Deleted:
trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/src/org/jboss/tools/jsf/vpe/seam/test/SeamComponentTest.java
===================================================================
---
trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/src/org/jboss/tools/jsf/vpe/seam/test/SeamComponentTest.java 2011-03-16
19:31:01 UTC (rev 29827)
+++
trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/src/org/jboss/tools/jsf/vpe/seam/test/SeamComponentTest.java 2011-03-16
20:33:01 UTC (rev 29828)
@@ -1,165 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2007 Exadel, Inc. and Red Hat, Inc.
- * Distributed under license by Red Hat, Inc. All rights reserved.
- * This program is 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:
- * Exadel, Inc. and Red Hat, Inc. - initial API and implementation
- ******************************************************************************/
-package org.jboss.tools.jsf.vpe.seam.test;
-
-import org.eclipse.core.resources.IFile;
-import org.jboss.tools.vpe.base.test.TestUtil;
-import org.jboss.tools.vpe.base.test.VpeTest;
-
-/**
- * Class for testing all Seam components
- *
- * @author dsakovich(a)exadel.com
- *
- */
-public class SeamComponentTest extends VpeTest {
-
- public SeamComponentTest(String name) {
- super(name);
- setCheckWarning(false);
- }
-
- public void testButton() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/button.xhtml", SeamAllTests.IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testCache() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/cache.xhtml", SeamAllTests.IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testConversationId() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/conversationId.xhtml", SeamAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testConversationPropagation() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/conversationPropagation.xhtml",
SeamAllTests.IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testConvertDateTime() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/convertDateTime.xhtml", SeamAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testConvertEntity() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/convertEntity.xhtml", SeamAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testConvertEnum() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/convertEnum.xhtml", SeamAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testDecorate() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/decorate.xhtml", SeamAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testDefaultAction() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/defaultAction.xhtml", SeamAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testDiv() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/div.xhtml", SeamAllTests.IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testEnumItem() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/enumItem.xhtml", SeamAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testFileUpload() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/fileUpload.xhtml", SeamAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testFormattedText() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/formattedText.xhtml", SeamAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testFragment() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/fragment.xhtml", SeamAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testGraphicImage() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/graphicImage.xhtml", SeamAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testLabel() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/label.xhtml", SeamAllTests.IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testLink() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/link.xhtml", SeamAllTests.IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testMessage() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/message.xhtml", SeamAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testRemote() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/remote.xhtml", SeamAllTests.IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testSelectDate() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/message.xhtml", SeamAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testSelectItems() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/message.xhtml", SeamAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testValidate() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/validate.xhtml", SeamAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testSpan() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/span.xhtml", SeamAllTests.IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testValidateAll() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/validateAll.xhtml", SeamAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testValidateFormattedText() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/validateFormattedText.xhtml",
SeamAllTests.IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testTaskId() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/taskId.xhtml", SeamAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testAllComponentsOnSinglePage() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/seamtest.xhtml", SeamAllTests.IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
-}
Modified:
trunk/vpe/tests/org.jboss.tools.vpe.html.test/src/org/jboss/tools/vpe/html/test/HtmlAllTests.java
===================================================================
---
trunk/vpe/tests/org.jboss.tools.vpe.html.test/src/org/jboss/tools/vpe/html/test/HtmlAllTests.java 2011-03-16
19:31:01 UTC (rev 29827)
+++
trunk/vpe/tests/org.jboss.tools.vpe.html.test/src/org/jboss/tools/vpe/html/test/HtmlAllTests.java 2011-03-16
20:33:01 UTC (rev 29828)
@@ -34,7 +34,6 @@
TestSuite suite = new TestSuite("Tests for Vpe HTML components");
//$NON-NLS-1$
// $JUnit-BEGIN$
suite.addTestSuite(JBIDE3280Test.class);
- suite.addTestSuite(HtmlComponentTest.class);
suite.addTestSuite(HtmlComponentContentTest.class);
return new VpeTestSetup(suite);
Deleted:
trunk/vpe/tests/org.jboss.tools.vpe.html.test/src/org/jboss/tools/vpe/html/test/HtmlComponentTest.java
===================================================================
---
trunk/vpe/tests/org.jboss.tools.vpe.html.test/src/org/jboss/tools/vpe/html/test/HtmlComponentTest.java 2011-03-16
19:31:01 UTC (rev 29827)
+++
trunk/vpe/tests/org.jboss.tools.vpe.html.test/src/org/jboss/tools/vpe/html/test/HtmlComponentTest.java 2011-03-16
20:33:01 UTC (rev 29828)
@@ -1,310 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2007 Red Hat, Inc.
- * Distributed under license by Red Hat, Inc. All rights reserved.
- * This program is 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:
- * Red Hat, Inc. - initial API and implementation
- ******************************************************************************/
-package org.jboss.tools.vpe.html.test;
-
-import org.eclipse.core.resources.IFile;
-import org.jboss.tools.vpe.base.test.TestUtil;
-import org.jboss.tools.vpe.base.test.VpeTest;
-
-/**
- * Class for testing all html components
- *
- * @author Sergey Dzmitrovich
- *
- */
-public class HtmlComponentTest extends VpeTest {
- // import project name
- public static final String IMPORT_PROJECT_NAME = "htmlTest"; //$NON-NLS-1$
-
- public HtmlComponentTest(String name) {
- super(name);
- setCheckWarning(false);
- }
-
- /*
- * test for block html tags
- */
-
- public void testDiv() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/block/div.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testDl() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/block/dl.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testLists() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/block/li.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testSpan() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/block/span.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- /*
- * test for core html tags
- */
-
- public void testA() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/core/a.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testAddress() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/core/address.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testBody() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/core/body.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testImg() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/core/img.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testLink() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/core/link.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testMap() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/core/map.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testObject() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/core/object.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testStyle() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/core/style.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testTitle() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/core/title.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- /*
- * test for form html tags
- */
-
- public void testButton() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/form/button.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testFieldset() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/form/fieldset.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testForm() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/form/form.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testInput() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/form/input.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testLabel() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/form/label.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testSelect() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/form/select.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testTextArea() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/form/textArea.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- /*
- * test for frames html tags
- */
-
- public void testFrameset() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/frames/frameset.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testIframe() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/frames/iframe.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- /*
- * test for scripts html tags
- */
-
- public void testScript() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/scripts/script.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- /*
- * test for table html tags
- */
-
- public void testComplexTable() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/table/complex_table.html", IMPORT_PROJECT_NAME));
//$NON-NLS-1$
- }
-
- public void testTable() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/table/table.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- /*
- * test for text html tags
- */
-
- public void testAbbr() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/text/abbr.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testAcronym() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/text/acronym.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testB() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/text/b.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testBig() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/text/big.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testBlockquote() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/text/blockquote.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testBr() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/text/br.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testCite() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/text/cite.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testCode() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/text/code.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testDel() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/text/del.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testDfn() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/text/dfn.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testEm() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/text/em.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testHr() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/text/hr.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testI() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/text/i.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testIns() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/text/ins.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testKbd() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/text/kbd.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testP() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/text/p.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testPre() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/text/pre.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testQ() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/text/q.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testSamp() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/text/samp.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testSmall() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/text/small.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testStrong() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/text/strong.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testSub() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/text/sub.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testSup() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/text/sup.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testTt() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/text/tt.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
- public void testVar() throws Throwable {
- performTestForVpeComponent((IFile) TestUtil.getComponentPath(
- "components/text/var.html", IMPORT_PROJECT_NAME)); //$NON-NLS-1$
- }
-
-}