Ejemplo n.º 1
0
        public void TestThatEagleInheritsBehaviors()
        {
            Eagle mordor = new Eagle()
            {
                Name = "Mordor"
            };

            string input    = $"{mordor.Name} {mordor.IsAPet()}";
            string expected = $"{mordor.Name} Am I your pet?";

            Assert.Equal(expected, input);
        }