01: /*
02: * Copyright (C) 2006, 2007 XStream Committers.
03: * All rights reserved.
04: *
05: * The software in this package is published under the terms of the BSD
06: * style license a copy of which has been included with this distribution in
07: * the LICENSE.txt file.
08: *
09: * Created on 19. October 2006 by Joerg Schaible
10: */
11: package com.thoughtworks.xstream.io.xml;
12:
13: import com.thoughtworks.xstream.io.xml.xppdom.Xpp3Dom;
14:
15: /**
16: * @author Jörg Schaible
17: */
18: public class XppDomWriterTest extends AbstractDocumentWriterTest {
19:
20: protected void setUp() throws Exception {
21: super .setUp();
22: writer = new XppDomWriter();
23: }
24:
25: protected DocumentReader createDocumentReaderFor(Object node) {
26: return new XppDomReader((Xpp3Dom) node);
27: }
28:
29: // inherits tests from superclass
30: }
|