/// <summary>
 /// Default constructor - initializes all fields to default values
 /// </summary>
 public RunPipeResultEventArgs(RunPipe pipe, ReportRun result)
     : base(pipe)
 {
     if (result==null)
         throw new ArgumentNullException("result");
     this.result = result;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Default constructor - initializes all fields to default values
 /// </summary>
 public RunPipeEventArgs(RunPipe pipe)
 {
     if (pipe == null)
     {
         throw new ArgumentNullException("pipe");
     }
     this.pipe = pipe;
 }
Exemplo n.º 3
0
 /// <summary>
 /// Default constructor - initializes all fields to default values
 /// </summary>
 public RunPipeResultEventArgs(RunPipe pipe, ReportRun result)
     : base(pipe)
 {
     if (result == null)
     {
         throw new ArgumentNullException("result");
     }
     this.result = result;
 }
Exemplo n.º 4
0
 public RunPipeStarter(RunPipe pipe)
 {
     if (pipe == null)
         throw new ArgumentNullException("pipe");
     this.pipe = pipe;
 }
Exemplo n.º 5
0
 public void Skip(RunPipe pipe, ReportRun result)
 { }
Exemplo n.º 6
0
        public void Failure(RunPipe pipe, ReportRun result)
        {
			Writer.WriteLine("[failure] {0}: {1}", pipe.Name, result.Exception.Message);
		}
Exemplo n.º 7
0
        public void Ignore(RunPipe pipe, ReportRun result)
        {
			Writer.WriteLine("[ignored] {0}", pipe.Name);
		}
Exemplo n.º 8
0
 // MLS 12/21/05 - changing some of the messages below to give details more like the AutoRunner,
 //      although it still doesn't show all the details that the AutoRunner does.
 // TOOD: Refactor so that this is exactly like the AutoRunner, and remove duplicate code.
 
 public void Success(RunPipe pipe, ReportRun result)
 {
     Writer.WriteLine("[success] {0}", pipe.Name);
 }
Exemplo n.º 9
0
		public void Start(RunPipe pipe)
		{}