Example #1
0
        public static void RunAll()
        {
            Epilog.Print("Message tests started. \n -----------------------------");

            PrintMessageTest();
            ErrorMessageTest();
            WarningMessageTest();
            ExceptionMessageTest();
            AssertMessageTest();

            Epilog.Print("Message tests complete. \n -----------------------------");
        }
Example #2
0
 public static void YetAnotherTestRun()
 {
     Epilog.Print("Epilog in yet another test", 42, "Hi!", true, 4.2, new Tuple <int, bool>(15, false));
     Epilog.Emoji.Shrug("It's nothing here");
 }
Example #3
0
 public void ArgsCollectionPrintTest(LogType logType, IEnumerable <object> args)
 {
     Epilog.Print(logType, "Generic print args collection test", args);
 }
Example #4
0
 public void SingleArgPrintTest(LogType logType, object arg)
 {
     Epilog.Print(logType, "Generic print single arg test", arg);
 }
Example #5
0
 public void MultiplyArgsPrintTest(LogType logType, object arg1, string arg2, bool arg3, float arg4)
 {
     Epilog.Print(logType, "Generic print multiply args test", arg1, arg2, arg3, arg4);
 }