Esempio n. 1
0
        public void When_PropertyChangedEventHandler_is_called_Then_delegate_is_invoked()
        {
            _propertyChanged.Call(null, null);
            Assert.That(_called, Is.True);

            _called = false;
            _propertyChanged.Call(() => _funcSix);
            Assert.That(_called, Is.True);
        }