Esempio n. 1
0
        public void Test_If_Input_10_Returns_False()
        {
            _3and5Class ccc            = new _3and5Class();
            int         input          = 10;
            bool        expectedOutput = false;
            bool        actualOutput   = ccc.IfDivisableByThreeAndFive(input);

            Assert.AreEqual(expectedOutput, actualOutput);
        }
Esempio n. 2
0
        public void Test_If_Input_30_Returns_True()
        {
            int         input          = 30;
            _3and5Class ccc            = new _3and5Class();
            bool        expectedOutput = true;
            bool        actualOutput   = ccc.IfDivisableByThreeAndFive(input);

            Assert.AreEqual(expectedOutput, actualOutput);
        }