public async Task Post_CardType_The_Guid_is_empty()
        {
            CardType cardType = new CardType
            {
                Id   = Guid.Empty,
                Name = "1"
            };

            var service = new CardTypeService(_httpClient);
            var result  = await service.PostCardType(requestUri, cardType);

            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 type id has already been taken.", item),
                                  item => Assert.Equal("The card type name has already been taken.", item)
                                  );
            }
        }
        public async Task Post_CardType_Valido()
        {
            Guid guid = new Guid("5E210F4F-D12B-4F85-8464-6F8740920FAA");

            CardType cardType = new CardType
            {
                Id   = guid,
                Name = "TESTES..."
            };

            var service = new CardTypeService(_httpClient);
            var result  = await service.PostCardType(requestUri, cardType);

            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 type id has already been taken.", item),
                                  item => Assert.Equal("The card type name has already been taken.", item)
                                  );
            }
        }