fixture.getWriters().add(writer2);
}
public final void testSelectChildWithPredicate() throws Exception {
EMFDOMXPath xpath = new EMFDOMXPath("books[@title='Book 1']");
Book book = (Book) xpath.selectSingleNode(fixture);
assertNotNull(book);
assertEquals("Book 1", book.getTitle());
}
public final void testStringValueOf() throws Exception {