blob: 7ffc901b1246b2bda3c650ee7ec958f10bafea08 [file] [log] [blame]
/**
******************************************************************************
* Copyright © 2018 PTA GmbH.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
*
* http://www.eclipse.org/legal/epl-v10.html
*
******************************************************************************
*/
package org.eclipse.openk.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());
}
}