blob: 485702960dd18aefbb3c0c0034de9e3038802c82 [file] [log] [blame]
package org.eclipse.wst.xsl.internal.core.tests;
import junit.framework.TestCase;
import org.eclipse.wst.xsl.core.XSLCore;
public class TestXSLCore extends TestCase {
public TestXSLCore() {
super();
}
public TestXSLCore(String name) {
super(name);
}
public void testisXSLNamespaceNullFalse() {
assertFalse(XSLCore.isXSLNamespace(null));
}
}