Exemplo n.º 1
0
        public void It_Should_Return_False_With_Negative_4()
        {
            Prob1342 p = new Prob1342();

            Assert.IsTrue(p.IsPowerOfFour(-4));
        }
Exemplo n.º 2
0
        public void It_Should_Return_True_With_4()
        {
            Prob1342 p = new Prob1342();

            Assert.IsTrue(p.IsPowerOfFour(4));
        }
Exemplo n.º 3
0
        public void It_Should_Return_False_With_0()
        {
            Prob1342 p = new Prob1342();

            Assert.IsTrue(p.IsPowerOfFour(0));
        }