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