コード例 #1
0
        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();
        }
コード例 #2
0
 public void PrintInfo(string message, bool newLine = true)
 {
     msgPrinter.PrintInfo(message, newLine);
 }