We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad97b03 commit 3070d82Copy full SHA for 3070d82
1 file changed
src/test/java/org/java_websocket/extensions/PerMessageDeflateExtensionTest.java
@@ -8,7 +8,11 @@
8
9
import java.nio.ByteBuffer;
10
11
-import static org.junit.Assert.*;
+import static org.junit.Assert.assertArrayEquals;
12
+import static org.junit.Assert.assertEquals;
13
+import static org.junit.Assert.assertFalse;
14
+import static org.junit.Assert.assertTrue;
15
+import static org.junit.Assert.fail;
16
17
public class PerMessageDeflateExtensionTest {
18
@@ -113,7 +117,7 @@ public void testGetProvidedExtensionAsServer() {
113
117
}
114
118
115
119
@Test
116
- public void testToString() throws Exception {
120
+ public void testToString() {
121
PerMessageDeflateExtension deflateExtension = new PerMessageDeflateExtension();
122
assertEquals( "PerMessageDeflateExtension", deflateExtension.toString() );
123
0 commit comments