public async Task Put_CardBrand_The_Guid_is_empty()
        {
            CardBrand cardBrand = new CardBrand
            {
                Id   = Guid.Empty,
                Name = "oxx"
            };

            var service = new CardBrandService(_httpClient);
            var result  = await service.PutCardBrand(requestUri, cardBrand);

            if (result.Status == HttpStatusCode.OK)
            {
                Assert.True(result.Status == HttpStatusCode.OK, "OK");
            }
            else
            {
                List <string> listError = new List <string>();
                foreach (string error in result.Data)
                {
                    listError.Add(error);
                }
                Assert.Collection(listError,
                                  item => Assert.Equal("The Name is Required", item),
                                  item => Assert.Equal("The Name must have between 2 and 30 characters", item),
                                  item => Assert.Equal("The Guid is empty", item),
                                  item => Assert.Equal("The Guid is invalid and contains 00000000", item),
                                  item => Assert.Equal("The card brand name has already been taken.", item)
                                  );
            }
        }
        public async Task Put_CardBrand_Valido()
        {
            Guid guid = new Guid("5E210F4F-D12B-4F85-8464-6F8740920FAA");

            CardBrand cardBrand = new CardBrand
            {
                Id   = guid,
                Name = "ALTERADO..."
            };

            var service = new CardBrandService(_httpClient);
            var result  = await service.PutCardBrand(requestUri, cardBrand);

            if (result.Status == HttpStatusCode.OK)
            {
                Assert.True(result.Status == HttpStatusCode.OK, "OK");
            }
            else
            {
                List <string> listError = new List <string>();
                foreach (string error in result.Data)
                {
                    listError.Add(error);
                }
                Assert.Collection(listError,
                                  item => Assert.Equal("The Name is Required", item),
                                  item => Assert.Equal("The Name must have between 2 and 30 characters", item),
                                  item => Assert.Equal("The Guid is empty", item),
                                  item => Assert.Equal("The Guid is invalid and contains 00000000", item),
                                  item => Assert.Equal("The card brand name has already been taken.", item)
                                  );
            }
        }
        public async Task Put_CardBrand_The_Name_must_have_between_2_and_30_characters()
        {
            Guid guid = new Guid("1BF784F8-7B94-47EC-9FD9-5257D83E8E7D");

            CardBrand cardBrand = new CardBrand
            {
                Id   = guid,
                Name = "o"
            };

            var service = new CardBrandService(_httpClient);
            var result  = await service.PutCardBrand(requestUri, cardBrand);

            if (result.Status == HttpStatusCode.OK)
            {
                Assert.True(result.Status == HttpStatusCode.OK, "OK");
            }
            else
            {
                List <string> listError = new List <string>();
                foreach (string error in result.Data)
                {
                    listError.Add(error);
                }
                Assert.Collection(listError,
                                  item => Assert.Equal("The Name is Required", item),
                                  item => Assert.Equal("The Name must have between 2 and 30 characters", item),
                                  item => Assert.Equal("The Guid is empty", item),
                                  item => Assert.Equal("The Guid is invalid and contains 00000000", item),
                                  item => Assert.Equal("The card brand name has already been taken.", item)
                                  );
            }
        }