public void GetCommand_OptionObject2015_GetErrorCode2_ReturnsGetErrorCode2Command() { // Arrange OptionObject2015 optionObject = new OptionObject2015(); string parameter = "GetErrorCode2"; GetErrorCode2Command expected = new GetErrorCode2Command(optionObject); // Act IRunScriptCommand actual = CommandFactory.GetCommand(optionObject, parameter); // Assert Assert.AreEqual(expected.GetType(), actual.GetType()); }
public void GetCommand_OptionObject2_GetErrorCode2_ReturnsGetErrorCode2Command() { // Arrange OptionObject2 optionObject = new OptionObject2(); IParameter parameter = new Parameter("GetErrorCode2"); IOptionObjectDecorator optionObjectDecorator = new OptionObjectDecorator(optionObject); GetErrorCode2Command expected = new GetErrorCode2Command(optionObjectDecorator); // Act IRunScriptCommand actual = CommandFactory.GetCommand(optionObject, parameter); // Assert Assert.AreEqual(expected.GetType(), actual.GetType()); }