Esempio n. 1
0
 public static void CheckOrm(this UnitTestGenerator tg)
 {
     tg.For <Commands.Add.Add>().Basic();
     tg.For <Commands.Delete.Delete>().Basic();
     tg.For <Commands.DeletePk.DeletePk>().Basic();
     tg.For <Commands.Update.Update>().Basic();
 }
Esempio n. 2
0
        public static void CheckSql(this UnitTestGenerator tg)
        {
            var fr = tg.For <Sql>();

            fr.Text();
            fr.Parameters();
        }
Esempio n. 3
0
 public static void Basics(this UnitTestGenerator tg)
 {
     tg.For <CommandBase>().Basic();
     tg.For <Comment>().Basic();
 }