ActivationExceptionTest.java :  » Apache-Harmony-Java-SE » org-package » org » apache » harmony » rmi » tests » java » rmi » activation » Java Open Source

Java Open Source » Apache Harmony Java SE » org package 
org package » org » apache » harmony » rmi » tests » java » rmi » activation » ActivationExceptionTest.java
/*
 *  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.rmi.tests.java.rmi.activation;

import java.rmi.activation.ActivationException;
import junit.framework.TestCase;

/**
 * <p></p>
 *
 */
public class ActivationExceptionTest extends TestCase {
    /**
     * Test method for {@link java.rmi.activation.ActivationException#ActivationException(java.lang.String, java.lang.Throwable)}.
     */
    public void testActivationExceptionStringThrowable() {
        NullPointerException npe = new NullPointerException("npe");
        ActivationException e = new ActivationException("fixture", npe);
        assertTrue(e.getMessage().contains("fixture"));
        assertSame(npe, e.getCause());
        assertSame(npe, e.detail);
        try {
            e.initCause(new NullPointerException());
            fail("did not throw illegal state exception");
        } catch (IllegalStateException ise) {
        }
    }

    /**
     * Test method for {@link java.rmi.activation.ActivationException#ActivationException(java.lang.String)}.
     */
    public void testActivationExceptionString() {
        ActivationException e = new ActivationException("fixture");
        assertTrue(e.getMessage().contains("fixture"));
        assertNull(e.getCause());
        assertNull(e.detail);
        try {
            e.initCause(new NullPointerException());
            fail("did not throw illegal state exception");
        } catch (IllegalStateException ise) {
        }
    }

    /**
     * Test method for {@link java.rmi.activation.ActivationException#ActivationException()}.
     */
    public void testActivationException() {
        ActivationException e = new ActivationException();
        assertNull(e.getMessage());
        assertNull(e.getCause());
        assertNull(e.detail);
        try {
            e.initCause(new NullPointerException());
            fail("did not throw illegal state exception");
        } catch (IllegalStateException ise) {
        }
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.