01: /*
02: * Copyright Aduna (http://www.aduna-software.com/) (c) 2007.
03: *
04: * Licensed under the Aduna BSD-style license.
05: */
06: package org.openrdf.rio.rdfxml;
07:
08: import org.openrdf.rio.rdfxml.util.RDFXMLPrettyWriterFactory;
09:
10: public class RDFXMLPrettyWriterTest extends RDFXMLWriterTest {
11:
12: public RDFXMLPrettyWriterTest() {
13: super (new RDFXMLPrettyWriterFactory(),
14: new RDFXMLParserFactory());
15: }
16: }
|