hc_domimplementationfeaturenullpublic final class hc_domimplementationfeaturenull extends org.w3c.domts.DOMTestCase Load a document and invoke its
"getImplementation()" method. This should create a
DOMImplementation object whose "hasFeature(feature,
version)" method is invoked with version equal to null.
If the version is not specified, supporting any version
feature will cause the method to return "true". |
Constructors Summary |
---|
public hc_domimplementationfeaturenull(org.w3c.domts.DOMTestDocumentBuilderFactory factory)Constructor.
org.w3c.domts.DocumentBuilderSetting[] settings =
new org.w3c.domts.DocumentBuilderSetting[] {
org.w3c.domts.DocumentBuilderSetting.hasNullString
};
DOMTestDocumentBuilderFactory testFactory = factory.newInstance(settings);
setFactory(testFactory);
//
// check if loaded documents are supported for content type
//
String contentType = getContentType();
preload(contentType, "hc_staff", false);
|
Methods Summary |
---|
public java.lang.String | getTargetURI()Gets URI that identifies the test.
return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/hc_domimplementationfeaturenull";
| public static void | main(java.lang.String[] args)Runs this test from the command line.
DOMTestCase.doMain(hc_domimplementationfeaturenull.class, args);
| public void | runTest()Runs the test case.
Document doc;
DOMImplementation domImpl;
boolean state;
doc = (Document) load("hc_staff", false);
domImpl = doc.getImplementation();
if (("text/html".equals(getContentType()))) {
state = domImpl.hasFeature("HTML", null);
assertTrue("supports_HTML_null", state);
} else {
state = domImpl.hasFeature("XML", null);
assertTrue("supports_XML_null", state);
}
|
|