assertEquals("Book 1", book.getTitle());
}
public final void testStringValueOf() throws Exception {
EMFDOMXPath xpath = new EMFDOMXPath("writers[last()]/@name");
String result = xpath.stringValueOf(fixture);
assertEquals("Writer 2", result);
}
public final void testSum() throws Exception {
EMFDOMXPath xpath = new EMFDOMXPath("sum(books/@pages)");