Exemplo n.º 1
0
        public Test.Common.ProcessPrx start(string testsuite, string exe, string[] args, Current current)
        {
            var test = testsuite.Replace("/", ".") + "." + char.ToUpper(exe[0]) + exe.Substring(1);

            _mainPage.print("starting test." + test + "... ");
            string[] newArgs = new string[args.Length + 1];
            newArgs[0] = test;
            Array.Copy(args, 0, newArgs, 1, args.Length);
            var helper = new ControllerHelperI(test, newArgs, _mainPage, _mainPage.platformAdapter);

            helper.run();
            return(current.adapter.Add(new ProccessI(helper)));
        }
Exemplo n.º 2
0
 public ProccessI(ControllerHelperI controllerHelper)
 {
     _controllerHelper = controllerHelper;
 }