public void Test_ReadJson_ThrowsOnWrongProperties(string json)
        {
            Action action = () => responseConverter.ReadJson(CreateJsonReader(json), typeof(IResponse), null, new JsonSerializer());

            action.Should().Throw <ArgumentException>();
        }