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 = 100;
                }
                break;

            case 2:
                if (!Int32.TryParse(args[0], out iRep))
                {
                    iRep = 100;
                }
                if (!Int32.TryParse(args[1], out iObj))
                {
                    iObj = 10;
                }
                break;

            default:
                iRep = 100;
                iObj = 10;
                break;
            }

            SingLinkStay Mv_Leak = new SingLinkStay();

            if (Mv_Leak.runTest(iRep, iObj))
            {
                Console.WriteLine("Test Passed");
                return(100);
            }
            else
            {
                Console.WriteLine("Test Failed");
                return(1);
            }
        }
Exemplo n.º 2
0
        public static int Main(System.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 = 100;
                   }
               break;
               case 2:
                   if (!Int32.TryParse( Args[0], out iRep ))
                   {
                       iRep = 100;
                   }
                   if (!Int32.TryParse( Args[1], out iObj ))
                   {
                       iObj = 10;
                   }
               break;
               default:
                   iRep = 100;
                   iObj = 10;
               break;
            }

            SingLinkStay Mv_Leak = new SingLinkStay();
            if(Mv_Leak.runTest(iRep, iObj ))
            {
                Console.WriteLine( "Test Passed" );
                return 100;
            }
            else
            {
                Console.WriteLine( "Test Failed" );
                return 1;
            }

        }