Exemplo n.º 1
0
        public void CreateDog_Test()
        {
            IDog newDog = _racetrack.CreateDog(DogBreedEnum.Greyhound);
            var  result = (newDog).GetType();

            newDog.Should().BeOfType(typeof(Dog));
            newDog.Should().NotBeNull();
        }