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.turtle;
07:
08: import junit.framework.Test;
09: import junit.framework.TestSuite;
10:
11: /**
12: * @author akam
13: */
14: public class AllTests {
15:
16: public static Test suite() {
17: TestSuite suite = new TestSuite(
18: "Test for org.openrdf.rio.turtle");
19: // $JUnit-BEGIN$
20: suite.addTestSuite(TurtleParserTest.class);
21: suite.addTestSuite(TurtleWriterTest.class);
22: // $JUnit-END$
23: return suite;
24: }
25:
26: }
|