Exemplo n.º 1
0
        public void EventListenerTests_GetHashCode_Null()
        {
            EventListener instance      = null;
            EventListener otherInstance = new Mocks.MockEventListener(true, false);


            otherInstance.GetHashCode(instance);
        }
Exemplo n.º 2
0
        public void EventListenerTests_GetHashCode_Valid()
        {
            EventListener instance = new Mocks.MockEventListener(true, false);

            Assert.IsNotNull(instance.GetHashCode(instance));
        }