/******************************************************************************* * Copyright (c) 2007-2008 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 * * Contributor: * Red Hat, Inc. - initial API and implementation ******************************************************************************/ package org.jboss.tools.jsf.vpe.jsf.test.jbide; import org.jboss.tools.jsf.vpe.jsf.test.JsfAllTests; import org.jboss.tools.vpe.base.test.ComponentContentTest; import org.junit.Test; /** * @author mareshkau * */ public class JBIDE3197Test extends ComponentContentTest { public JBIDE3197Test() { } @Test public void testIncorrectTags() throws Throwable { performContentTest("incorrectCustomTags.xhtml"); //$NON-NLS-1$ } @Test public void testContentCustomTagsWithSourceSupport() throws Throwable { performContentTest("correctCustomTags.xhtml"); //$NON-NLS-1$ } @Test public void testJBIDE1593() throws Throwable { performContentTest("show100.xhtml"); //$NON-NLS-1$ } @Override protected String getTestProjectName() { return JsfAllTests.IMPORT_CUSTOM_FACELETS_PROJECT; } }