public static void Main( String[] args ) 
   {
   bool bResult = false; 
   Co1010ToLower oCo1010TLa = new Co1010ToLower();
   bResult = oCo1010TLa.runTest
     ();
   if (bResult == true) System.Console.Error.WriteLine( "String.ToLower: Co1010TL paSs." );
   else                 System.Console.Error.WriteLine( "String.ToLower: Co1010TL FAiL." );
   if (bResult == true) Environment.ExitCode = 0;
   else                 Environment.ExitCode = 11;
   }
Beispiel #2
0
    public static void Main(String[] args)
    {
        bool          bResult    = false;
        Co1010ToLower oCo1010TLa = new Co1010ToLower();

        bResult = oCo1010TLa.runTest
                      ();
        if (bResult == true)
        {
            System.Console.Error.WriteLine("String.ToLower: Co1010TL paSs.");
        }
        else
        {
            System.Console.Error.WriteLine("String.ToLower: Co1010TL FAiL.");
        }
        if (bResult == true)
        {
            Environment.ExitCode = 0;
        }
        else
        {
            Environment.ExitCode = 11;
        }
    }