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.sail.nativerdf;
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() {
19: TestSuite suite = new TestSuite(
20: "Test for org.openrdf.sail.nativerdf");
21: //$JUnit-BEGIN$
22: suite.addTestSuite(NativeStoreTest.class);
23: //$JUnit-END$
24: return suite;
25: }
26:
27: }
|