コード例 #1
0
        public void ShouldNotExecuteDefault()
        {
            const int  i = 1;
            const int  j = 34;
            const bool k = true;

            MultiSwitch.Match(i, j, k).
            With(1, 2, false).Do(() => Console.WriteLine("1, 2, 3")).
            With(1, 34, true).Do(() => Console.WriteLine("1, 34, true")).
            Default(() =>
            {
                throw new Exception("This should not be called");
            });
        }
コード例 #2
0
        public void ShouldFindOneMatch()
        {
            var        correctMatchWasExecuted = false;
            const int  i = 1;
            const int  j = 34;
            const bool k = true;

            MultiSwitch.Match(i, j, k).
            With(1, 2, false).Do(() => Console.WriteLine("1, 2, 3")).
            With(1, 34, false).Do(() => Console.WriteLine("1, 34, false")).
            With(1, 34, true).Do(() =>
            {
                Console.WriteLine("1, 34, true");
                correctMatchWasExecuted = true;
            });

            Assert.That(correctMatchWasExecuted);
        }
コード例 #3
0
        public void ShouldExecuteDefault()
        {
            var defaultWasExecuted = false;

            const int  i = 1;
            const int  j = 34;
            const bool k = true;

            MultiSwitch.Match(i, j, k).
            With(1, 2, false).Do(() => Console.WriteLine("1, 2, 3")).
            With(1, 34, false).Do(() => Console.WriteLine("1, 34, false")).
            Default(() =>
            {
                Console.WriteLine("This is default action if not match found");
                defaultWasExecuted = true;
            });

            Assert.That(defaultWasExecuted);
        }