/******************************************************************************* * 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.jbide; import org.eclipse.core.resources.IFile; import org.jboss.tools.jsf.vpe.jsf.test.JsfAllTests; import org.jboss.tools.vpe.base.test.TestUtil; import org.jboss.tools.vpe.base.test.VpeTest; import org.junit.Test; /** * @author Max Areshkau * * junit for http://jira.jboss.com/jira/browse/JBIDE-1568 * */ public class JsfJbide1568Test extends VpeTest { public JsfJbide1568Test() { } @Test public void testJBIDE1568Body() throws Throwable { performTestForVpeComponent( (IFile) TestUtil.getComponentPath("JBIDE/1568/JBIDE-1568-body.jsp", JsfAllTests.IMPORT_PROJECT_NAME)); //$NON-NLS-1$ } @Test public void testJBIDE1568RichFaces() throws Throwable { performTestForVpeComponent((IFile) TestUtil.getComponentPath("JBIDE/1568/JBIDE-1568-richfaces.jsp", //$NON-NLS-1$ JsfAllTests.IMPORT_PROJECT_NAME)); } @Test public void testJBIDE1568Seam() throws Throwable { performTestForVpeComponent( (IFile) TestUtil.getComponentPath("JBIDE/1568/JBIDE-1568-seam.xhtml", JsfAllTests.IMPORT_PROJECT_NAME));//$NON-NLS-1$ } }