01: /*
02: * Copyright Aduna (http://www.aduna-software.com/) (c) 1997-2006.
03: *
04: * Licensed under the Aduna BSD-style license.
05: */
06: package org.openrdf.rio.rdfxml;
07:
08: import junit.framework.Test;
09: import junit.framework.TestCase;
10: import junit.framework.TestSuite;
11:
12: /**
13: *
14: * @author Herko ter Horst
15: */
16: public class TestAll extends TestCase {
17:
18: public static Test suite() throws Exception {
19: TestSuite suite = new TestSuite(
20: "Test for org.openrdf.rio.rdfxml");
21: //$JUnit-BEGIN$
22: suite.addTest(RDFXMLParserTest.suite());
23: suite.addTestSuite(RDFXMLWriterTest.class);
24: suite.addTestSuite(RDFXMLPrettyWriterTest.class);
25: //$JUnit-END$
26: return suite;
27: }
28:
29: }
|