runTest() public method

public runTest ( ) : bool
return bool
コード例 #1
0
    public static void Main(String[] args)
    {
        bool bResult = false;
        Co8501OneGraphMultipleFormatters oCbTest = new Co8501OneGraphMultipleFormatters();

        try
        {
            bResult = oCbTest.runTest();
        }
        catch (Exception exc_main)
        {
            bResult = false;
            Console.WriteLine(s_strTFAbbrev + "FAiL!  Error Err_9999zzz!  Uncaught Exception caught in main(), exc_main==" + exc_main);
        }
        if (!bResult)
        {
            Console.WriteLine(s_strTFAbbrev + s_strTFPath);
            Console.Error.WriteLine(" ");
            Console.Error.WriteLine("FAiL!  " + s_strTFAbbrev);
            Console.Error.WriteLine(" ");
        }
        if (bResult == true)
        {
            Environment.ExitCode = 0;
        }
        else
        {
            Environment.ExitCode = 1;
        }
    }
コード例 #2
0
 	public static void Main( String[] args ){
 		bool bResult = false;	
 		Co8501OneGraphMultipleFormatters oCbTest = new Co8501OneGraphMultipleFormatters();
 		try
 		{
 			bResult = oCbTest.runTest();
 		}
 		catch ( Exception exc_main )
 		{
 			bResult = false;
 			Console.WriteLine( s_strTFAbbrev + "FAiL!  Error Err_9999zzz!  Uncaught Exception caught in main(), exc_main=="+ exc_main );
 		}
 		if ( ! bResult )
 		{
 			Console.WriteLine( s_strTFAbbrev + s_strTFPath );
 			Console.Error.WriteLine( " " );
 			Console.Error.WriteLine( "FAiL!  "+ s_strTFAbbrev );  
 			Console.Error.WriteLine( " " );
 		}
 		if ( bResult == true ) Environment.ExitCode = 0; else Environment.ExitCode = 1; 
 	}