Exemplo n.º 1
0
    public static void Main(String[] args)
    {
        Boolean bResult = false;
        Co6078Synchronized_Queue cbX = new Co6078Synchronized_Queue();

        try { if (args[0].Equals("-v"))
              {
                  cbX.verbose = true;
              }
        }
        catch (Exception) {}
        try
        {
            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 '" + s_strTFName + ".exe -v' to see tests...");
            Console.Error.WriteLine("FAiL!  " + s_strTFAbbrev);
            Console.Error.WriteLine(" ");
        }
        if (bResult == true)
        {
            Environment.ExitCode = 0;
        }
        else
        {
            Environment.ExitCode = 1;
        }
    }
 public static void Main( String[] args ) 
 {
     Boolean bResult = false; 
     Co6078Synchronized_Queue cbX = new Co6078Synchronized_Queue();
     try { if ( args[0].Equals( "-v" ) ) cbX.verbose = true; } 
     catch( Exception ) {}
     try 
     {
         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 '" + s_strTFName + ".exe -v' to see tests..." );
         Console.Error.WriteLine( "FAiL!  "+ s_strTFAbbrev );  
         Console.Error.WriteLine( " " );
     }
     if ( bResult == true ) Environment.ExitCode = 0;
     else Environment.ExitCode = 1; 
 }