public void EventListenerTests_GetHashCode_Null() { EventListener instance = null; EventListener otherInstance = new Mocks.MockEventListener(true, false); otherInstance.GetHashCode(instance); }
public void EventListenerTests_GetHashCode_Valid() { EventListener instance = new Mocks.MockEventListener(true, false); Assert.IsNotNull(instance.GetHashCode(instance)); }