Пример #1
0
        public void Is_Divisible_By_Three()
        {
            // arrange
            int _numbertodivide = 3;

            // act
            FizzyMath _fm      = new FizzyMath();
            bool      _isFizzy = _fm.IsFizz(_numbertodivide);

            // assert
            Assert.IsTrue(_isFizzy);
        }
Пример #2
0
        public void Is_Printable_Number()
        {
            // arrange
            int _numbertodivide = 13;

            // act
            FizzyMath _fm          = new FizzyMath();
            bool      _returnValue = _fm.IsPrintableNumber(_numbertodivide);

            // assert
            Assert.IsTrue(_returnValue);
        }