예제 #1
0
파일: Program.cs 프로젝트: jbdk/JsonRpcLib
 private static void NotifyTest(JsonRpcClient client, int testCount)
 {
     for (int i = 0; i < testCount; i++)
     {
         client.Notify("SpeedNoArgs");
     }
 }
예제 #2
0
        public async void TestNotifyCanary()
        {
            Action testAction = () => _client.Notify("Canary").Wait();

            testAction.Should().NotThrow();
        }