ServiceConfigurationErrorTest.java revision 561ee011997c6c2f1befbfaa9d5f0a99771c1d63
1/*
2 *  Licensed to the Apache Software Foundation (ASF) under one or more
3 *  contributor license agreements.  See the NOTICE file distributed with
4 *  this work for additional information regarding copyright ownership.
5 *  The ASF licenses this file to You under the Apache License, Version 2.0
6 *  (the "License"); you may not use this file except in compliance with
7 *  the License.  You may obtain a copy of the License at
8 *
9 *     http://www.apache.org/licenses/LICENSE-2.0
10 *
11 *  Unless required by applicable law or agreed to in writing, software
12 *  distributed under the License is distributed on an "AS IS" BASIS,
13 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 *  See the License for the specific language governing permissions and
15 *  limitations under the License.
16 */
17
18package org.apache.harmony.luni.tests.java.util;
19
20import java.util.ServiceConfigurationError;
21
22import junit.framework.TestCase;
23
24import org.apache.harmony.testframework.serialization.SerializationTest;
25
26/**
27 * Tests for java.util.ServiceConfigurationError
28 *
29 * @since 1.6
30 */
31public class ServiceConfigurationErrorTest extends TestCase {
32
33    /**
34     * @tests {@link java.util.ServiceConfigurationError#ServiceConfigurationError(String)}
35     */
36    @SuppressWarnings("nls")
37    public void test_ConstructorLjava_lang_String() {
38        ServiceConfigurationError e = new ServiceConfigurationError("fixture");
39        assertEquals("fixture", e.getMessage());
40        assertNull(e.getCause());
41    }
42
43    /**
44     * @tests {@link java.util.ServiceConfigurationError#ServiceConfigurationError(String, Throwable)}
45     */
46    @SuppressWarnings("nls")
47    public void test_ConstructorLjava_lang_StringLjava_lang_Throwable() {
48        IllegalArgumentException iae = new IllegalArgumentException(
49                "info in the IAE");
50        ServiceConfigurationError e = new ServiceConfigurationError("fixture",
51                iae);
52        assertEquals("fixture", e.getMessage());
53        assertEquals(iae, e.getCause());
54        assertEquals("info in the IAE", e.getCause().getMessage());
55    }
56
57    /**
58     * @throws Exception
59     * @tests serialization/deserialization.
60     */
61    @SuppressWarnings("nls")
62    public void testSerializationSelf() throws Exception {
63        SerializationTest.verifySelf(new ServiceConfigurationError("fixture"));
64        SerializationTest.verifySelf(new ServiceConfigurationError("fixture",
65                new IllegalArgumentException("info in the IAE")));
66    }
67
68    /**
69     * @throws Exception
70     * @tests serialization/deserialization compatibility with RI.
71     */
72    @SuppressWarnings("nls")
73    public void testSerializationCompatibility() throws Exception {
74        ServiceConfigurationError e = new ServiceConfigurationError("fixture",
75                new IllegalArgumentException("info in the IAE"));
76        SerializationTest.verifyGolden(this, e);
77    }
78}
79