blob: dab37b97c9d30d462b6279a38398cd74cf757d1c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 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.html.tests.encoding.html;
import java.io.IOException;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.wst.xml.tests.encoding.read.TestContentTypeDetection;
public class TestContentTypeDetectionForHTML extends TestContentTypeDetection {
public void testFile57() throws CoreException, IOException {
doTest("org.eclipse.wst.html.core.htmlsource", "testfiles/html/EmptyFile.html", null);
}
public void testFile58() throws CoreException, IOException {
doTest("org.eclipse.wst.html.core.htmlsource", "testfiles/html/IllformedNormalNonDefault.html", null);
}
public void testFile59() throws CoreException, IOException {
doTest("org.eclipse.wst.html.core.htmlsource", "testfiles/html/LargeNoEncoding.html", null);
}
public void testFile60() throws CoreException, IOException {
doTest("org.eclipse.wst.html.core.htmlsource", "testfiles/html/LargeNonDefault.html", null);
}
public void testFile61() throws CoreException, IOException {
doTest("org.eclipse.wst.html.core.htmlsource", "testfiles/html/MultiNonDefault.html", null);
}
public void testFile62() throws CoreException, IOException {
doTest("org.eclipse.wst.html.core.htmlsource", "testfiles/html/NoEncoding.html", null);
}
public void testFile63() throws CoreException, IOException {
doTest("org.eclipse.wst.html.core.htmlsource", "testfiles/html/noquotes.html", null);
}
public void testFile64() throws CoreException, IOException {
doTest("org.eclipse.wst.html.core.htmlsource", "testfiles/html/NormalNonDefault.html", null);
}
}