コード例 #1
0
ファイル: ActionsTests.cs プロジェクト: rolspace/monads.net
        public void ExecuteGenericWithNotNull()
        {
            var executed = false;

            var eventMock = new ActionTMock <string>();

            eventMock.TestAction += arg => executed = arg == "Test";

            eventMock.InvokeAction("Test");

            Assert.IsTrue(executed);
        }
コード例 #2
0
ファイル: ActionsTests.cs プロジェクト: rolspace/monads.net
        public void ExecuteGenericWithNull()
        {
            var eventMock = new ActionTMock <string>();

            eventMock.InvokeAction("Test");
        }