Пример #1
0
        private void OnTestStarted(TestInformation e)
        {
            EventHandler <TestInformationEventArgs> handler = TestStarted;

            if (handler != null)
            {
                handler(this, new TestInformationEventArgs(e));
            }
        }
Пример #2
0
 public TestInformationEventArgs(TestInformation information)
 {
     Information = information;
 }