[bisq-network/bisq] Add API test harness for Linux & OSX (#4366)

Stan notifications at github.com
Tue Aug 18 13:42:50 UTC 2020


@ghubstan commented on this pull request.



> +        var request = createLockWalletRequest();
+        grpcStubs.walletsService.lockWallet(request);
+
+        Throwable exception = assertThrows(StatusRuntimeException.class, this::getBalance);
+        assertEquals("UNKNOWN: wallet is locked", exception.getMessage());
+    }
+
+    @Test
+    @Order(6)
+    public void testLockWalletWhenWalletAlreadyLockedShouldThrowException() {
+        var request = createLockWalletRequest();
+
+        Throwable exception = assertThrows(StatusRuntimeException.class, () ->
+                grpcStubs.walletsService.lockWallet(request));
+        assertEquals("UNKNOWN: wallet is already locked", exception.getMessage());
+

Extra while line removed in commit c3abd4e.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/bisq-network/bisq/pull/4366#discussion_r472206508
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.bisq.network/pipermail/bisq-github/attachments/20200818/71fff2b4/attachment.html>


More information about the bisq-github mailing list