Ejemplo n.º 1
0
        public void GetHelp_With_Arguments_go_Should_Retrun_False()
        {
            string[] args   = { "go" };
            bool     result = ExcelToSql.GetHelp(args);

            result.Should().BeFalse();
        }
Ejemplo n.º 2
0
        public void GetHelp_With_Argument_Null_Should_Retrun_True()
        {
            string[] args   = { null };
            bool     result = ExcelToSql.GetHelp(args);

            result.Should().BeTrue();
        }
Ejemplo n.º 3
0
        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();
        }