Microsoft.Silverlight.Testing.Client.DataManager.Hook C# (CSharp) Method

Hook() public method

Connect to unit test harness events for processing and updating the underlying unit test run model.
public Hook ( ) : void
return void
        public virtual void Hook()
        {
            if (_h == null)
            {
                throw new ArgumentNullException("Harness");
            }

            _h.TestMethodStarting += OnTestMethodStarting;
            _h.TestMethodCompleted += OnTestMethodCompleted;
            _h.TestClassStarting += OnTestClassStarting;
            _h.TestClassCompleted += OnTestClassCompleted;
            _h.TestRunStarting += OnTestRunStarting;
        }

Usage Example

        /// <summary>
        /// Starts the test run.
        /// </summary>
        private void StartTestRun()
        {
            _model = DataManager.Create(_harness);
            _model.Hook();

            DataContext = _model.Data;

            ScrollViewer sv = resultsTreeView.GetScrollHost();

            // Keep the current test visible in the tree view control
            _harness.TestClassStarting += (x, xe) =>
            {
                if (resultsTreeView != null)
                {
                    resultsTreeView.SelectItem(_model.GetClassModel(xe.TestClass));
                }
                ;
            };
            _harness.TestMethodStarting += (x, xe) =>
            {
                if (sv != null)
                {
                    sv.ScrollToBottom();
                }
            };
            _harness.TestMethodCompleted  += OnTestMethodCompleted;
            _harness.TestHarnessCompleted += OnTestHarnessCompleted;
            _harness.TestAssemblyStarting += OnTestAssemblyStarting;

            _harness.Run();
        }
All Usage Examples Of Microsoft.Silverlight.Testing.Client.DataManager::Hook