예제 #1
0
        //----< test method is where all the testing gets done >---------

        public bool test()
        {
            int num1 = 10;
            int num2 = 0;

            return(code.divide(num1, num2));
        }
예제 #2
0
        static void Main(string[] args)
        {
            CodeToTest1 ctt = new CodeToTest1();

            ctt.divide(2, 1);
            Console.Write("\n\n");
        }