コード例 #1
0
        public void CanCoexist_WhenCharacterAreFoxAndGoose_ReturnsReason()
        {
            // Arrange
            var goose = new Goose();
            var fox   = new Fox();

            // Act
            var result = fox.CanCoexist(goose);

            // Assert
            Assert.Equal("Fox will eat the goose", result);
        }