Exemple #1
0
 private static void NotifyTest(JsonRpcClient client, int testCount)
 {
     for (int i = 0; i < testCount; i++)
     {
         client.Notify("SpeedNoArgs");
     }
 }
        public async void TestNotifyCanary()
        {
            Action testAction = () => _client.Notify("Canary").Wait();

            testAction.Should().NotThrow();
        }