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

        bResult = oCo1130Ca.runTest();
        if (bResult == true)
        {
            Console.Error.WriteLine("paSs.");
        }
        else
        {
            Console.Error.WriteLine("FAiL.");
        }
        if (bResult == true)
        {
            Environment.ExitCode = 0;
        }
        else
        {
            Environment.ExitCode = 11;
        }
    }
 public static void Main( String[] args ) 
   {
   bool bResult = false; 
   Co1130get_Chars_Int oCo1130Ca = new Co1130get_Chars_Int();
   bResult = oCo1130Ca.runTest();
   if (bResult == true) Console.Error.WriteLine( "paSs." );
   else                 Console.Error.WriteLine( "FAiL." );
   if (bResult == true) Environment.ExitCode = 0;
   else                 Environment.ExitCode = 11;
   }