public virtual void ShowTestNames()
        {
            msgPrinter.PrintLine();
            int testNumber = 1;

            foreach (var x in tests)
            {
                string name = GetNameOfTest(x);

                msgPrinter.PrintInfo($"{testNumber} {name}");
                testNumber++;
            }
            ;
            msgPrinter.PrintLine();
        }
Exemplo n.º 2
0
 public void PrintInfo(string message, bool newLine = true)
 {
     msgPrinter.PrintInfo(message, newLine);
 }