public static int Main(String [] Args) { int iRep = 0; int iObj = 0; Console.WriteLine("Test should return with ExitCode 100 ..."); if (Args.Length == 2) { if (!Int32.TryParse(Args[0], out iRep) || !Int32.TryParse(Args[0], out iObj)) { iRep = 20; iObj = 100; } } else { iRep = 20; iObj = 100; } VariantInt Mv_Obj = new VariantInt(); if (Mv_Obj.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 ..."); if (Args.Length==2) { if (!Int32.TryParse( Args[0], out iRep ) || !Int32.TryParse( Args[0], out iObj )) { iRep = 20; iObj = 100; } } else { iRep = 20; iObj = 100; } VariantInt Mv_Obj = new VariantInt(); if(Mv_Obj.runTest(iRep, iObj)) { Console.WriteLine("Test Passed"); return 100; } Console.WriteLine("Test Failed"); return 1; }