blob: 3030cba9452fea12f0701c3b03462e247a050984 [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));
}
}