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

            OnTestCreated(args);

            return(args);
        }
Ejemplo n.º 3
0
        private TestCreatedEventArgs OnTestCreated(Test test)
        {
            TestCreatedEventArgs args = new TestCreatedEventArgs(test);

            OnTestCreated(args);

            return(args);
        }