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.model.util;
07:
08: import junit.framework.Test;
09: import junit.framework.TestSuite;
10:
11: public class TestAll {
12:
13: public static Test suite() {
14: TestSuite suite = new TestSuite(
15: "Test for org.openrdf.model.util");
16: // $JUnit-BEGIN$
17: suite.addTestSuite(ModelEqualityTest.class);
18: // $JUnit-END$
19: return suite;
20: }
21: }
|