Example #1
0
        public void Given_I_have_a_total_of_10_I_expect_to_be_false()
        {
            // Given I have a total of 10
            var total = 10;

            // When I call the bust method
            IBust bust   = new Bust();
            bool  result = bust.IsBust(total);

            // Then I expect to get back false
            Assert.IsFalse(result);
        }
Example #2
0
        public void Given_I_have_a_total_of_24_I_expect_to_be_true()
        {
            // Given I have a total of 24
            var total = 24;

            // When I call the bust method
            IBust bust   = new Bust();
            bool  result = bust.IsBust(total);

            // Then I expect to get back true
            Assert.IsTrue(result);
        }