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.query.resultio;
07:
08: import org.openrdf.query.resultio.TupleQueryResultSerializationTest;
09: import org.openrdf.query.resultio.TupleQueryResultTest;
10:
11: import junit.framework.Test;
12: import junit.framework.TestCase;
13: import junit.framework.TestSuite;
14:
15: /**
16: *
17: * @author Herko ter Horst
18: */
19: public class TestAll extends TestCase {
20:
21: public static Test suite() {
22: TestSuite suite = new TestSuite(
23: "Test for org.openrdf.query.resultio");
24: //$JUnit-BEGIN$
25: suite.addTestSuite(TupleQueryResultTest.class);
26: suite.addTestSuite(TupleQueryResultSerializationTest.class);
27: //$JUnit-END$
28: return suite;
29: }
30:
31: }
|