Merge branch 'jetty-9' of ssh://git.eclipse.org/gitroot/jetty/org.eclipse.jetty.project into jetty-9
This commit is contained in:
commit
3fa8a6ad3e
|
@ -0,0 +1,16 @@
|
||||||
|
package org.eclipse.jetty.websocket.asserts;
|
||||||
|
|
||||||
|
import junit.framework.Assert;
|
||||||
|
|
||||||
|
import org.eclipse.jetty.websocket.api.OpCode;
|
||||||
|
import org.eclipse.jetty.websocket.frames.CloseFrame;
|
||||||
|
|
||||||
|
public class CloseFrameAssert
|
||||||
|
{
|
||||||
|
|
||||||
|
public static void assertValidCloseFrame( CloseFrame close )
|
||||||
|
{
|
||||||
|
Assert.assertEquals(OpCode.CLOSE, close.getOpCode() );
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
package org.eclipse.jetty.websocket.generator;
|
||||||
|
|
||||||
|
import org.eclipse.jetty.websocket.asserts.CloseFrameAssert;
|
||||||
|
import org.eclipse.jetty.websocket.frames.CloseFrame;
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
public class CloseFrameGeneratorTest
|
||||||
|
{
|
||||||
|
@Test
|
||||||
|
public void testGenerator() throws Exception
|
||||||
|
{
|
||||||
|
CloseFrame close = new CloseFrame();
|
||||||
|
|
||||||
|
CloseFrameAssert.assertValidCloseFrame(close);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue