summaryrefslogtreecommitdiffstats
path: root/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/MissingResourceExceptionTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'harmony-tests/src/test/java/org/apache/harmony/tests/java/util/MissingResourceExceptionTest.java')
-rw-r--r--harmony-tests/src/test/java/org/apache/harmony/tests/java/util/MissingResourceExceptionTest.java85
1 files changed, 85 insertions, 0 deletions
diff --git a/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/MissingResourceExceptionTest.java b/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/MissingResourceExceptionTest.java
new file mode 100644
index 0000000..3eb9bac
--- /dev/null
+++ b/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/MissingResourceExceptionTest.java
@@ -0,0 +1,85 @@
+/*
+ * 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 org.apache.harmony.tests.java.util;
+
+import java.util.Locale;
+import java.util.MissingResourceException;
+import java.util.ResourceBundle;
+
+public class MissingResourceExceptionTest extends junit.framework.TestCase {
+
+ /**
+ * java.util.MissingResourceException#MissingResourceException(java.lang.String,
+ * java.lang.String, java.lang.String)
+ */
+ public void test_ConstructorLjava_lang_StringLjava_lang_StringLjava_lang_String() {
+ // Test for method java.util.MissingResourceException(java.lang.String,
+ // java.lang.String, java.lang.String)
+ assertNotNull(new MissingResourceException("Detail string", "Class name string", "Key string"));
+ assertNotNull(new MissingResourceException(null, "Class name string", "Key string"));
+ assertNotNull(new MissingResourceException("Detail string", null, "Key string"));
+ assertNotNull(new MissingResourceException("Detail string", "Class name string", null));
+ try {
+ ResourceBundle.getBundle("Non-ExistentBundle");
+ } catch (MissingResourceException e) {
+ return;
+ }
+ fail("Failed to generate expected exception");
+ }
+
+ /**
+ * java.util.MissingResourceException#getClassName()
+ */
+ public void test_getClassName() {
+ // Test for method java.lang.String
+ // java.util.MissingResourceException.getClassName()
+ try {
+ ResourceBundle.getBundle("Non-ExistentBundle");
+ } catch (MissingResourceException e) {
+ assertEquals("Returned incorrect class name", "Non-ExistentBundle"
+ + '_' + Locale.getDefault(), e.getClassName());
+ }
+ }
+
+ /**
+ * java.util.MissingResourceException#getKey()
+ */
+ public void test_getKey() {
+ // Test for method java.lang.String
+ // java.util.MissingResourceException.getKey()
+ try {
+ ResourceBundle.getBundle("Non-ExistentBundle");
+ } catch (MissingResourceException e) {
+ assertTrue("Returned incorrect class name", e.getKey().equals(""));
+ }
+ }
+
+ /**
+ * Sets up the fixture, for example, open a network connection. This method
+ * is called before a test is executed.
+ */
+ protected void setUp() {
+ }
+
+ /**
+ * Tears down the fixture, for example, close a network connection. This
+ * method is called after a test is executed.
+ */
+ protected void tearDown() {
+ }
+}