1 package com.thoughtworks.xstream.io.xml;2 3 import com.thoughtworks.xstream.io.HierarchicalStreamReader;4 import com.thoughtworks.xstream.io.xml.xppdom.Xpp3Dom;5 import com.thoughtworks.xstream.io.xml.xppdom.Xpp3DomBuilder;6 7 import java.io.StringReader ;8 9 public class XppReaderTest extends AbstractXMLReaderTest {10 protected HierarchicalStreamReader createReader(String xml) throws Exception {11 return new XppReader(new StringReader (xml));12 }13 14 // inherits tests from superclass15 }16