AOUT.CH5.Logan.Tests.EventsVerifier.ExpectNoEvent C# (CSharp) Method

ExpectNoEvent() public method

public ExpectNoEvent ( object target, string eventName ) : void
target object
eventName string
return void
        public void ExpectNoEvent(object target, string eventName)
        {
            EventExpectation expectation = new EventExpectation();
            expectation.ExpectNoFire(target, eventName);
            expectations.Add(expectation);
        }