We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18c5c34 commit dd6e319Copy full SHA for dd6e319
src/test/java/net/twasi/obsremotejava/test/OBSCommunicatorTest.java
@@ -46,4 +46,13 @@ void testOnErrorCallbackOnInvalidResponseBaseClass() {
46
assertEquals("Invalid response type received", actualTestResult.get());
47
}
48
49
+ @Test
50
+ void testUnknownEventReceived() {
51
+ OBSCommunicator connector = new OBSCommunicator(true);
52
+
53
+ connector.registerOnError(null);
54
55
+ connector.onMessage("{'update-type': 'DOES NOT EXIST'}");
56
+ }
57
58
0 commit comments