Interface for a test item provider that must be implemented for each type of test.
Namespace:  Microsoft.VisualStudio.TestTools.Common
Assembly:  Microsoft.VisualStudio.QualityTools.Common (in Microsoft.VisualStudio.QualityTools.Common.dll)
Syntax
'Declaration
Public Interface ITip _
    Inherits IDisposable
public interface ITip : IDisposable
public interface class ITip : IDisposable
type ITip =  
    interface 
        interface IDisposable 
    end
public interface ITip extends IDisposable
The ITip type exposes the following members.
Properties
| Name | Description | |
|---|---|---|
| .gif) | TestType | Gets a TestType object that uniquely identifies the type of test. | 
Top
Methods
| Name | Description | |
|---|---|---|
| .gif) | BeforeRemoveTestRun | Called before a test run is removed. | 
| .gif) | Dispose | Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. (Inherited from IDisposable.) | 
| .gif) | Load | Loads elements from the specified location into memory. | 
| .gif) | MergeResults | Merges an incoming test result text message into a test result in memory. | 
| .gif) | Reset | Removes all storage information from memory and stops all save operations until the next call to the Load method. | 
| .gif) | Save | Saves the specified array of tests to the specified location by using the provided Load object. | 
| .gif) | Unload | Stop listening for changes at the provided location. | 
Top