Ejemplo n.º 1
0
        public void Unregister_ActionWasNotAdded_DoesNotThrow()
        {
            Action <int> action = i => Console.WriteLine("Sample Action: {0}", i);

            Assert.DoesNotThrow(() => _actions.UnregisterAction(action));
        }