blob: 51e5fad9cf0a00ec6cd96b88c3341f32911fab27 [file] [log] [blame]
package pta.de.core.exceptions;
import org.eclipse.jetty.http.HttpStatus;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
public class HttpStatusExceptionTest {
@Test
public void testAll() {
HttpStatusException hse = new HttpStatusException( 200 );
assertEquals(HttpStatus.OK_200, hse.getHttpStatus());
}
}