コード例 #1
0
    public static void Main(String[] args)
    {
        Environment.ExitCode = 1;
        bool            bResult = false;
        StringBuilder   sblMsg  = new StringBuilder(99);
        Co1011Serialize cbX     = new Co1011Serialize();

        try
        {
            bResult = cbX.runTest();
        }
        catch (Exception exc_main)
        {
            bResult = false;
            Console.WriteLine("FAiL!  Error Err_9999zzz (" + s_strTFAbbrev + ")!  Uncaught Exception caught fell to Main(), exc_main==" + exc_main);
        }
        if (!bResult)
        {
            Console.WriteLine(s_strTFPath + s_strTFName);
            Console.WriteLine(" ");
            Console.WriteLine("FAiL!  " + s_strTFAbbrev);
            Console.WriteLine(" ");
        }
        if (bResult == true)
        {
            Environment.ExitCode = 0;
        }
        else
        {
            Environment.ExitCode = 1;
        }
    }
コード例 #2
0
ファイル: co1011serialize.cs プロジェクト: ArildF/masters
  public static void Main( String[] args )
  {
 	Environment.ExitCode = 1;  
 	bool bResult = false; 
 	StringBuilder sblMsg = new StringBuilder( 99 );
 	Co1011Serialize cbX = new Co1011Serialize();
 	try
 	{
 		bResult = cbX.runTest();
 	}
 	catch ( Exception exc_main )
 	{
 		bResult = false;
 		Console.WriteLine( "FAiL!  Error Err_9999zzz ("+ s_strTFAbbrev +")!  Uncaught Exception caught fell to Main(), exc_main=="+ exc_main );
 	}
 	if ( ! bResult )
 	{
 		Console.WriteLine( s_strTFPath + s_strTFName );
 		Console.WriteLine( " " );
 		Console.WriteLine( "FAiL!  "+ s_strTFAbbrev );  
 		Console.WriteLine( " " );
 	}
 	if ( bResult == true ) Environment.ExitCode = 0; else Environment.ExitCode = 1; 
  }