Example #1
0
        public void TestThatRhinoiInheritsBehaviors()
        {
            Rhino hornBoy = new Rhino()
            {
                Name = "HornBoy"
            };

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

            Assert.Equal(expected, input);
        }