1   
2   
3   
4   
5   
6   
7   
8   package gov.noaa.gdsg.xmldbremote.manage;
9   
10  import junit.framework.*;
11  import org.w3c.dom.Node;
12  import org.xmldb.api.base.ResourceSet;
13  import org.xmldb.api.modules.XPathQueryService;
14  
15  /***
16   *
17   * @author tns
18   */
19  public class CollectionQuerierTest extends TestCase {
20      
21      CollectionQueryier querier = null;
22      
23      public CollectionQuerierTest(String testName) {
24          super(testName);
25      }
26  
27      protected void setUp() throws java.lang.Exception {
28      }
29  
30      protected void tearDown() throws java.lang.Exception {
31      }
32  
33      public static junit.framework.Test suite() {
34          junit.framework.TestSuite suite = new junit.framework.TestSuite(CollectionQuerierTest.class);
35          
36          return suite;
37      }
38  
39      /***
40       * Test of query method, of class gov.noaa.gdsg.xmldbremote.manage.CollectionQuerier.
41       */
42      public void testQuery() {
43          System.out.println("testQuery");
44          
45          
46          fail("The test case is empty.");
47      }
48      
49      
50      
51      
52  }