示例#1
0
        public static int Main(String[] args)
        {
            bool bResult = false; // Assume FAiL
            cb6054ToByte_all cbX = new cb6054ToByte_all();
            try { if (args[0].Equals("-v")) cbX.verbose = true; } catch (Exception) { }

            try
            {
                printoutCoveredMethods();
                bResult = cbX.runTest();
            }
            catch (Exception exc_main)
            {
                bResult = false;
                Console.WriteLine("FAiL!  Error Err_9999zzz!  Uncaught Exception caught in main(), exc_main==" + exc_main);
            }

            if (!bResult)
            {
                Console.WriteLine(s_strTFPath + s_strTFName);
                Console.Error.WriteLine(" ");
                Console.Error.WriteLine("Try 'cb6054ToByte_all.exe -v' to see tests...");
                Console.Error.WriteLine("FAiL!  " + s_strTFAbbrev);  // Last line is a nice eye catcher location.
                Console.Error.WriteLine(" ");
            }

            return bResult ? 100 : 1;
        }