01: // You can redistribute this software and/or modify it under the terms of
02: // the Ozone Library License version 1 published by ozone-db.org.
03: //
04: // The original code and portions created by SMB are
05: // Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.
06: //
07: package test.xmldb.levelzero;
08:
09: import junit.framework.*;
10:
11: /**
12: * This class has all tests required for core level 0 compliance
13: * The code relies heavily upon the Use Case descriptions at the
14: * <a href="http://www.xmldb.org">XML:DB</a> website written
15: * primarily by Kimbro Staken
16: * @author Per Nyfelt
17: */
18: public class LevelZeroTest extends TestCase {
19:
20: /**
21: * @param name the name given to the test
22: */
23: public LevelZeroTest(String name) {
24: super (name);
25: }
26:
27: public static Test suite() {
28: TestSuite suite = new TestSuite("All level 0 conformance tests");
29: suite.addTest(StringTest.suite());
30: suite.addTest(DOMTest.suite());
31: suite.addTest(SAXTest.suite());
32: return suite;
33: }
34: }
|