(self, ui_websocket)
| 117 | assert ui_websocket.ws.getResult() == ["hello", "hello", None, "hello"] |
| 118 | |
| 119 | def testAesUtf8(self, ui_websocket): |
| 120 | ui_websocket.actionAesEncrypt(0, self.utf8_text) |
| 121 | key, iv, encrypted = ui_websocket.ws.getResult() |
| 122 | |
| 123 | ui_websocket.actionAesDecrypt(0, iv, encrypted, key) |
| 124 | assert ui_websocket.ws.getResult() == self.utf8_text |
nothing calls this directly
no test coverage detected