1 /*
2 * Copyright (C) The Apache Software Foundation. All rights reserved.
3 *
4 * This software is published under the terms of the Apache Software License
5 * version 1.1, a copy of which has been included with this distribution in
6 * the LICENSE.txt file.
7 */
8 package org.codehaus.spice.configkit;
9
10 /***
11 * Data for unit tests.
12 *
13 * @author Peter Donald
14 * @version $Revision: 1.1 $ $Date: 2003/12/03 03:19:29 $
15 */
16 class TestData
17 {
18 private static final String DATA_DIR = "org/codehaus/spice/configkit/test/";
19
20 static final String PUBLIC_ID = "-//PHOENIX/Assembly DTD Version 1.0//EN";
21 static final String SYSTEM_ID = "http://jakarta.apache.org/phoenix/assembly_1_0.dtd";
22 static final String RESOURCE = DATA_DIR + "empty.txt";
23 static final String SCHEMA = DATA_DIR + "relax-schema.xml";
24 static final String DTD = DATA_DIR + "assembly.dtd";
25 static final String ASSEMBLY_DATA = DATA_DIR + "assembly1.xml";
26 static final String XML_DATA = DATA_DIR + "data1.xml";
27 static final String XML_DATA2 = RESOURCE;
28 static final String XML_DATA3 = DATA_DIR + "data2.xml";
29
30 static final String SCHEMA_PUBLIC_ID = "-//TEST/Blah DTD Version 1.0//EN";
31 static final String SCHEMA_SYSTEM_ID = "http://www.realityforge.org/test/test.xml";
32
33 static final EntityInfo INFO = new EntityInfo( PUBLIC_ID,
34 SYSTEM_ID,
35 RESOURCE );
36 static final String CATALOG_JAR = "aTestCatalog.jar";
37 }
This page was automatically generated by Maven