示例#1
0
    public static void Main(String[] args)
    {
        bool bResult = false;
        Co8687CopyTo_array_int cbA = new Co8687CopyTo_array_int();

        try
        {
            bResult = cbA.runTest();
        }
        catch (Exception exc_main)
        {
            bResult = false;
            Console.WriteLine(s_strTFAbbrev + " : Fail! Error Err_main! Uncaught Exception in main(), exc_main==" + exc_main);
        }
        if (!bResult)
        {
            Console.WriteLine("Path: " + s_strTFName + s_strTFPath);
            Console.WriteLine(" ");
            Console.WriteLine("Fail!  " + s_strTFAbbrev);
            Console.WriteLine(" ");
        }
        if (bResult)
        {
            Environment.ExitCode = 0;
        }
        else
        {
            Environment.ExitCode = 1;
        }
    }
示例#2
0
 public static void Main(String[] args)
 {
     bool bResult = false;
     Co8687CopyTo_array_int cbA = new Co8687CopyTo_array_int();
     try 
     {
         bResult = cbA.runTest();
     } 
     catch (Exception exc_main)
     {
         bResult = false;
         Console.WriteLine(s_strTFAbbrev + " : Fail! Error Err_main! Uncaught Exception in main(), exc_main=="+exc_main);
     }
     if (!bResult)
     {
         Console.WriteLine ("Path: "+s_strTFName + s_strTFPath);
         Console.WriteLine( " " );
         Console.WriteLine( "Fail!  "+ s_strTFAbbrev);
         Console.WriteLine( " " );
     }
     if (bResult) Environment.ExitCode=0; else Environment.ExitCode=1;
 }