Exemplo n.º 1
0
        public void Test_WithError_Works()
        {
            var          error                = Mock.Of <Error <JToken> >();
            const string errorString          = "some-error";
            var          untypedErrorResponse = new UntypedErrorResponse
            {
                Error    = error,
                RawError = errorString
            };

            jsonRpcCallContext.WithError(untypedErrorResponse);

            jsonRpcCallContext.Error.Should().Be(error);
        }
Exemplo n.º 2
0
 public void WithError(UntypedErrorResponse untypedErrorResponse)
 {
     ErrorInfo = GetStringWithLimit(untypedErrorResponse.RawError);
     Error     = untypedErrorResponse.Error;
 }
Exemplo n.º 3
0
        public void Test_FormattedErrorResponse_HasDefaultVersion()
        {
            var value = new UntypedErrorResponse();

            value.Jsonrpc.Should().Be(JsonRpcConstants.Version);
        }