ITip Interface
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 | |
---|---|---|
TestType | Gets a TestType object that uniquely identifies the type of test. |
Top
Methods
Name | Description | |
---|---|---|
BeforeRemoveTestRun | Called before a test run is removed. | |
Dispose | Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. (Inherited from IDisposable.) | |
Load | Loads elements from the specified location into memory. | |
MergeResults | Merges an incoming test result text message into a test result in memory. | |
Reset | Removes all storage information from memory and stops all save operations until the next call to the Load method. | |
Save | Saves the specified array of tests to the specified location by using the provided Load object. | |
Unload | Stop listening for changes at the provided location. |
Top