Ejemplo n.º 1
0
 private void Fire(
     TestEventHandler handler, TestEventArgs e)
 {
     if (handler != null)
     {
         handler(this, e);
     }
 }
Ejemplo n.º 2
0
		private void Fire( 
			TestEventHandler handler, TestEventArgs e )
		{
			if ( handler != null )
				handler( this, e );
		}
		private void OnTestEvent( object sender, TestEventArgs e )
		{
			events.Add( e );
            if (e.Action == TestAction.RunFinished)
                GotRunFinished = true;
		}
Ejemplo n.º 4
0
 private void OnTestEvent( object sender, TestEventArgs e )
 {
     events.Add( e );
 }