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

Unhook() public method

Unhook from the unit test harness events.
public Unhook ( ) : void
return void
        public virtual void Unhook()
        {
            _h.TestMethodStarting -= OnTestMethodStarting;
            _h.TestMethodCompleted -= OnTestMethodCompleted;
            _h.TestClassStarting -= OnTestClassStarting;
            _h.TestClassCompleted -= OnTestClassCompleted;
            _h.TestRunStarting -= OnTestRunStarting;
        }