Example #1
0
 public void Remove(TestGroup aGroup)
 {
     if (EventGroupRemoved != null)
     {
         EventGroupRemoved(this, new EventArgsGroup(aGroup));
     }
 }
Example #2
0
 public void Add(TestGroup aGroup)
 {
     if (EventGroupAdded != null)
     {
         EventGroupAdded(this, new EventArgsGroup(aGroup));
     }
 }