Package org.sentinel.servers.http.protocol

Source Code of org.sentinel.servers.http.protocol.NoSuchHTTPStatusCodeExceptionTest

package org.sentinel.servers.http.protocol;

import org.sentinel.servers.http.protocol.NoSuchHTTPStatusCodeException;
import static org.junit.Assert.*;
import org.junit.Test;
import org.sentinel.SentinelException;
import org.sentinel.server.ServerException;
import org.sentinel.servers.http.HTTPException;

public class NoSuchHTTPStatusCodeExceptionTest
{

    @Test
    public void testInstantiation()
    {
        try {
            throw new NoSuchHTTPStatusCodeException("999");
        }
        catch(NoSuchHTTPStatusCodeException ex) {
            assertEquals("No such HTTP status code 999", ex.getMessage());
            assertTrue(ex instanceof HTTPException);
            assertTrue(ex instanceof ServerException);
            assertTrue(ex instanceof SentinelException);
            assertTrue(ex instanceof Exception);
        }
    }
   
}
TOP

Related Classes of org.sentinel.servers.http.protocol.NoSuchHTTPStatusCodeExceptionTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.