public static int Main(String [] Args) { int iRep = 0; int iObj = 0; Console.WriteLine("Test should return with ExitCode 100 ..."); switch( Args.Length ) { case 1: if (!Int32.TryParse( Args[0], out iRep )) { iRep = 20; } break; case 2: if (!Int32.TryParse( Args[0], out iRep )) { iRep = 20; } if (!Int32.TryParse( Args[1], out iObj )) { iObj = 10; } break; default: iRep = 20; iObj = 10; break; } DLCollect Mv_Leak = new DLCollect(); if(Mv_Leak.runTest(iRep, iObj )) { Console.WriteLine("Test Passed"); return 100; } Console.WriteLine("Test Failed"); return 1; }
public static int Main(String [] Args) { int iRep = 0; int iObj = 0; Console.WriteLine("Test should return with ExitCode 100 ..."); switch (Args.Length) { case 1: if (!Int32.TryParse(Args[0], out iRep)) { iRep = 20; } break; case 2: if (!Int32.TryParse(Args[0], out iRep)) { iRep = 20; } if (!Int32.TryParse(Args[1], out iObj)) { iObj = 10; } break; default: iRep = 20; iObj = 10; break; } DLCollect Mv_Leak = new DLCollect(); if (Mv_Leak.runTest(iRep, iObj)) { Console.WriteLine("Test Passed"); return(100); } Console.WriteLine("Test Failed"); return(1); }