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

            Assert.IsTrue(result);
        }