示例#1
0
        public void ShouldReturnHelpText()
        {
            // Arrange
            var helloStrategy = new HelloStrategy();

            // Act
            var helpText = helloStrategy.GetHelpText();

            // Assert
            Assert.AreEqual(helpText, Resources.text.help.HelpTextValues.HelloCommand);
        }