Esempio n. 1
0
        public void Test_NullUIDispatcher_Evaluate()
        {
            var target = new NullUIDispatcher();

            int res = target.Evaluate(() => 3);

            res.Should().Be(3);
        }
Esempio n. 2
0
        public void Test_NullUIDispatcher_Evaluate()
        {
            var target = new NullUIDispatcher();

            int res = target.Evaluate(() => 3);

            res.Should().Be(3);
        }
        public void Test_NullUIDispatcher_Evaluate()
        {
            int res = _NullUIDispatcher.Evaluate(() => 3);

            res.Should().Be(3);
        }