File tree 1 file changed +2
-7
lines changed
websocket/binary/src/test/java/org/javaee7/websocket/binary/test
1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change 1
- /**
2
- *
3
- */
4
1
package org .javaee7 .websocket .binary .test ;
5
2
6
3
import static org .junit .Assert .assertArrayEquals ;
35
32
* @author Arun Gupta
36
33
*/
37
34
@ RunWith (Arquillian .class )
38
- public class WebsocketBinaryEndpointTest {
35
+ public class MyEndpointTest {
39
36
40
37
private static final String RESPONSE = "Hello World!" ;
41
38
@@ -48,13 +45,11 @@ public class WebsocketBinaryEndpointTest {
48
45
*/
49
46
@ Deployment (testable =false )
50
47
public static WebArchive createDeployment () {
51
- WebArchive war = ShrinkWrap .create (WebArchive .class )
48
+ return ShrinkWrap .create (WebArchive .class )
52
49
.addClasses (MyEndpointByteBuffer .class ,
53
50
MyEndpointByteArray .class ,
54
51
MyEndpointInputStream .class ,
55
52
MyEndpointClient .class );
56
- System .out .println (war .toString (true ));
57
- return war ;
58
53
}
59
54
60
55
/**
You can’t perform that action at this time.
0 commit comments