public void GetHelp_With_Arguments_go_Should_Retrun_False() { string[] args = { "go" }; bool result = ExcelToSql.GetHelp(args); result.Should().BeFalse(); }
public void GetHelp_With_Argument_Null_Should_Retrun_True() { string[] args = { null }; bool result = ExcelToSql.GetHelp(args); result.Should().BeTrue(); }
public void GetHelp_With_Arguments_Dummy_Should_Retrun_True() { Fixture fixture = new Fixture(); var arg = fixture.Create("arg"); string[] args = { arg }; bool result = ExcelToSql.GetHelp(args); result.Should().BeTrue(); }