public void PostDogShouldReturnCreated() { var dogDto = new DogDto { Breed = DogBreed.German_Shepherd, Name = "Major", ImageData = "data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==", }; var result = Controller.PostDog(dogDto, apiVersion); Assert.IsType <CreatedAtRouteResult>(result); }