KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > avalon > util > i18n > test > ResourceManagerTestCase


1 /*
2  * Copyright 1999-2004 The Apache Software Foundation
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
12  * implied.
13  *
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */

17 package org.apache.avalon.util.i18n.test;
18
19 import java.util.MissingResourceException JavaDoc;
20
21 import junit.framework.TestCase;
22
23 import org.apache.avalon.util.i18n.ResourceManager;
24 import org.apache.avalon.util.i18n.Resources;
25
26 /**
27  * TestCase for ResourceManager.
28  *
29  * @author <a HREF="mailto:dev@avalon.apache.org">Avalon Development Team</a>
30  */

31 public class ResourceManagerTestCase
32     extends TestCase
33 {
34     public ResourceManagerTestCase( final String JavaDoc name )
35     {
36         super( name );
37     }
38
39     public void testClassResources()
40     {
41         try
42         {
43             final Resources resources =
44                 ResourceManager.getClassResources( getClass() );
45
46             resources.getBundle();
47         }
48         catch( final MissingResourceException JavaDoc mre )
49         {
50             fail( "Unable to find class resource for class " + getClass() );
51         }
52     }
53
54     public void testPackageResources()
55     {
56         try
57         {
58             final Resources resources =
59                 ResourceManager.getPackageResources( getClass() );
60
61             resources.getBundle();
62         }
63         catch( final MissingResourceException JavaDoc mre )
64         {
65             fail( "Unable to find package resources for class " + getClass() );
66         }
67     }
68 }
69
Popular Tags