public void WrongAddress() { this.service = JsonRpcClientProxy <TestService> .Create("nosuchhost", 1666); this.service.test(); }
public void Init() { Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture; this.service = JsonRpcClientProxy <TestService> .Create("localhost", 1666); }
public void WrongPort() { this.service = JsonRpcClientProxy <TestService> .Create("localhost", 1333); this.service.test(); }