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.trig;
07:
08: import org.openrdf.rio.RDFWriterTest;
09:
10: /**
11: * @author Arjohn Kampman
12: */
13: public class TriGWriterTest extends RDFWriterTest {
14:
15: public TriGWriterTest() {
16: super (new TriGWriterFactory(), new TriGParserFactory());
17: }
18: }
|