Exemplo n.º 1
0
    public static void Main(String[] args)
    {
        bool          bResult = false;
        Co1702Dequeue oCbTest = new Co1702Dequeue();

        try
        {
            bResult = oCbTest.runTest();
        }
        catch (Exception ex)
        {
            Console.Error.Write(strTest);
            Console.Error.WriteLine(": Main() Uncaught exception");
            Console.Error.WriteLine(ex.ToString());
        }
        if (bResult == true)
        {
            Environment.ExitCode = 0;
        }
        else
        {
            Environment.ExitCode = 1;
        }
    }
Exemplo n.º 2
0
 public static void Main( String[] args )
 {
     bool bResult = false;	
     Co1702Dequeue oCbTest = new Co1702Dequeue();
     try
     {
         bResult = oCbTest.runTest();
     }
     catch( Exception ex )
     {
         Console.Error.Write( strTest );
         Console.Error.WriteLine(  ": Main() Uncaught exception" );
         Console.Error.WriteLine( ex.ToString() );
     }
     if ( bResult == true ) Environment.ExitCode = 0;
     else Environment.ExitCode = 1;
 }