summaryrefslogtreecommitdiffstats
path: root/luni/src/test/java/tests/api/java/util/ListResourceBundleTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'luni/src/test/java/tests/api/java/util/ListResourceBundleTest.java')
-rw-r--r--luni/src/test/java/tests/api/java/util/ListResourceBundleTest.java78
1 files changed, 0 insertions, 78 deletions
diff --git a/luni/src/test/java/tests/api/java/util/ListResourceBundleTest.java b/luni/src/test/java/tests/api/java/util/ListResourceBundleTest.java
deleted file mode 100644
index 8be04db..0000000
--- a/luni/src/test/java/tests/api/java/util/ListResourceBundleTest.java
+++ /dev/null
@@ -1,78 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package tests.api.java.util;
-
-import java.util.Enumeration;
-import java.util.ListResourceBundle;
-import java.util.Locale;
-import java.util.ResourceBundle;
-import java.util.Vector;
-
-public class ListResourceBundleTest extends junit.framework.TestCase {
-
- /**
- * java.util.ListResourceBundle#getKeys()
- */
- public void test_getKeys() {
- ResourceBundle bundle;
- String name = "tests.support.Support_TestResource";
- Locale.setDefault(new Locale("en", "US"));
- bundle = ResourceBundle.getBundle(name, new Locale("fr", "FR", "VAR"));
- Enumeration keys = bundle.getKeys();
- Vector result = new Vector();
- while (keys.hasMoreElements()) {
- result.addElement(keys.nextElement());
- }
- assertTrue("Missing key parent1", result.contains("parent1"));
- assertTrue("Missing key parent2", result.contains("parent2"));
- assertTrue("Missing key parent3", result.contains("parent3"));
- assertTrue("Missing key parent4", result.contains("parent4"));
- assertTrue("Missing key child1", result.contains("child1"));
- assertTrue("Missing key child2", result.contains("child2"));
- assertTrue("Missing key child3", result.contains("child3"));
- }
-
-
- public void test_handleGetObjectLjava_lang_String() {
- ListResourceBundle bundle;
- String name = "tests.support.Support_TestResource";
- Locale.setDefault(new Locale("en", "US"));
- bundle = (ListResourceBundle)ResourceBundle.getBundle(name, new Locale("fr", "FR", "VAR"));
- Enumeration keys = bundle.getKeys();
- String keyValue = null;
- Vector result = new Vector();
- while (keys.hasMoreElements()) {
- result.addElement(bundle.handleGetObject((String)keys.nextElement()));
- }
- assertEquals(9, result.size());
- assertTrue(result.contains(null));
- assertTrue(result.contains("frFRVARValue4"));
- assertTrue(result.contains("frFRVARChildValue1"));
- assertTrue(result.contains("frFRVARChildValue2"));
- assertTrue(result.contains("frFRVARChildValue3"));
- assertTrue(result.remove(null));
- assertTrue(result.remove(null));
- assertTrue(result.remove(null));
- }
-
- protected void setUp() {
- }
-
- protected void tearDown() {
- }
-}