Exemplo n.º 1
0
        private void OnTestRunStarted(TestRunInformation e)
        {
            EventHandler <TestRunInformationEventArgs> handler = TestRunStarted;

            if (handler != null)
            {
                handler(this, new TestRunInformationEventArgs(e));
            }
        }
Exemplo n.º 2
0
 public TestRunInformationEventArgs(TestRunInformation information)
 {
     Information = information;
 }