1 /***
2 * JFoxSOAF, Service-Oriented Application Framework
3 *
4 * Copyright (C) www.huihoo.org
5 *
6 * Distributable under GNU LGPL For more information, please visit:
7 * http://www.huihoo.org/jfox/jfoxsoaf
8 */
9
10 package org.huihoo.jfox.soaf.util;
11
12 import junit.framework.TestCase;
13
14 /***
15 * JUnit test case for the {@link org.huihoo.jfox.soaf.util.Globals).
16 *
17 * @author <a href="mailto:founder_chen@yahoo.com">Peter Cheng </a>
18 * @version $Revision: 1.2 $ $Date: 2004/10/25 11:39:01 $
19 * @version Revision: 1.0
20 */
21
22 public class GlobalsTest extends TestCase {
23
24 /***
25 * @see TestCase#setUp()
26 */
27 protected void setUp() throws Exception {
28 super.setUp();
29 }
30
31 /***
32 * @see TestCase#tearDown()
33 */
34 protected void tearDown() throws Exception {
35 super.tearDown();
36 }
37
38 /***
39 * Get the JFoxSOAF_CONFIG.
40 */
41 public void testJFoxSOAFConfig() {
42 assertEquals("jfoxsoaf-config.xml", Globals.JFOXSOAF_CONFIG);
43 }
44
45 }