Пример #1
0
        public void PutDogShouldReturnCreated()
        {
            var dogDto = new DogDto

            {
                Breed     = DogBreed.German_Shepherd,
                Name      = "Major",
                ImageData = "data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==",
            };

            _ = Controller.PostDog(dogDto, apiVersion);
            var result = Controller.PutDog(1, dogDto, apiVersion);

            Assert.IsType <CreatedAtRouteResult>(result);
        }