예제 #1
0
        public void IsPowerOfThreeTest_input0_output_false()
        {
            int    input  = 0;
            MyTask target = new MyTask();
            bool   result = target.IsPowerOfThree(input);

            Assert.IsFalse(result);
        }
예제 #2
0
        public void IsPowerOfThreeTest_input9_output_true()
        {
            int    input  = 9;
            MyTask target = new MyTask();
            bool   result = target.IsPowerOfThree(input);

            Assert.IsTrue(result);
        }