Beispiel #1
0
 protected virtual void OnTestCreated(TestCreatedEventArgs e)
 {
     if (TestCreated != null)
     {
         TestCreated(this, e);
     }
 }
Beispiel #2
0
        private TestCreatedEventArgs OnTestCreatedForOut()
        {
            TestCreatedEventArgs args = new TestCreatedEventArgs();

            OnTestCreated(args);

            return(args);
        }
Beispiel #3
0
        private TestCreatedEventArgs OnTestCreated(Test test)
        {
            TestCreatedEventArgs args = new TestCreatedEventArgs(test);

            OnTestCreated(args);

            return(args);
        }