All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jdom2.test.cases.xpath.TestJavaCompiled Maven / Gradle / Ivy

Go to download

A complete, Java-based solution for accessing, manipulating, and outputting XML data

There is a newer version: 2.0.2
Show newest version
package org.jdom2.test.cases.xpath;

import org.junit.Test;

import org.jdom2.contrib.xpath.java.JavaXPathFactory;
import org.jdom2.xpath.XPathFactory;

@SuppressWarnings({"javadoc"})
public class TestJavaCompiled extends AbstractTestXPathCompiled {
	
	public TestJavaCompiled() {
		super(false);
	}

	private static final XPathFactory myfac = new JavaXPathFactory();
	
	@Override
	XPathFactory getFactory() {
		return myfac;
	}
	
	@Override
	public void testAncestorOrSelfFromNamespace() {
		// nothing
	}

	@Override
	public void getXPathDouble() {
		// nothing
	}

	@Override
	public void getXPathString() {
		// nothing
	}

	@Override
	public void getXPathBoolean() {
		// nothing
	}

	@Override
	@Test
	public void testXPathPrecedingNode() {
		// we do not get items outside the root node for Document stuff.
		checkXPath("preceding::node()", child2emt, null, 
				maincomment, mainpi, maintext1, child1emt, child1text, maintext2);
	}
	
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy