KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > xmldb > levelzero > LevelZeroTest


1 // You can redistribute this software and/or modify it under the terms of
2
// the Ozone Library License version 1 published by ozone-db.org.
3
//
4
// The original code and portions created by SMB are
5
// Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.
6
//
7
package test.xmldb.levelzero;
8
9 import junit.framework.*;
10 /**
11  * This class has all tests required for core level 0 compliance
12  * The code relies heavily upon the Use Case descriptions at the
13  * <a HREF="http://www.xmldb.org">XML:DB</a> website written
14  * primarily by Kimbro Staken
15  * @author Per Nyfelt
16  */

17 public class LevelZeroTest extends TestCase {
18
19     /**
20      * @param name the name given to the test
21      */

22     public LevelZeroTest(String JavaDoc name) {
23         super(name);
24     }
25
26     public static Test suite() {
27       TestSuite suite = new TestSuite("All level 0 conformance tests");
28       suite.addTest(StringTest.suite());
29       suite.addTest(DOMTest.suite());
30       suite.addTest(SAXTest.suite());
31       return suite;
32     }
33 }
34
Popular Tags