示例#1
0
        /* void StartTesting()
         * Do some init job, and call CoreEngine to start testing.
         */
        public void StartTesting()
        {
            InitProject();

            _coreEngine = new CoreEngine();

            //deliver message while testing.
            //we can get the runtime message from CoreEngine
            _coreEngine.OnNewMessage += new CoreEngine._frameworkInfoDelegate(DeliverNewMsg);
            _coreEngine.AutoConfig    = _autoConfig;
            _coreEngine.KeywordParser = _parser;

            //start testing.
            _coreEngine.Start();
        }
示例#2
0
        /* void StartTesting()
         * Do some init job, and call CoreEngine to start testing.
         */
        public void StartTesting()
        {
            InitProject();

            _coreEngine = new CoreEngine();

            //deliver message while testing.
            //we can get the runtime message from CoreEngine
            _coreEngine.OnNewMessage += new CoreEngine._frameworkInfoDelegate(DeliverNewMsg);
            _coreEngine.AutoConfig = _autoConfig;
            _coreEngine.KeywordParser = _parser;

            //start testing.
            _coreEngine.Start();
        }