public void ExecuteNotGenericWithNotNull() { bool executed = false; var eventMock = new ActionMock(); eventMock.TestAction += () => executed = true; eventMock.InvokeAction(); Assert.IsTrue(executed); }
public void ExecuteNotGenericWithNull() { var eventMock = new ActionMock(); eventMock.InvokeAction(); }