public override void Write(Suite.ITestSuite testSuite)
 {
     this.workSheet.Cells[this.currentRow, 1].Value = testSuite.Name;
     this.workSheet.Cells[this.currentRow, 6].Value = testSuite.Description;
     this.currentRow++;
 }
Beispiel #2
0
 public virtual void Write(Suite.ITestSuite testSuite)
 {
     throw new System.NotImplementedException();
 }
        public override void Write(Suite.ITestSuite testSuite)
        {
            string str = string.Format("Running test suite:{0}-{1}", testSuite.Name, testSuite.Description);

            System.Console.WriteLine(str);
        }