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

            testAction.Should().NotThrow();
        }