ITestCase Interface
A set of data representing a test case stored in the test management server.
Namespace: Microsoft.TeamFoundation.TestManagement.Client
Assembly: Microsoft.TeamFoundation.TestManagement.Client (in Microsoft.TeamFoundation.TestManagement.Client.dll)
Syntax
public interface ITestCase : ITestBase, ITestObject<int>, IIdentifiable<int>,
IPropertyOwner, IDataErrorInfo, INotifyPropertyChanged, IAttachmentOwner
public interface class ITestCase : ITestBase, ITestObject<int>,
IIdentifiable<int>, IPropertyOwner, IDataErrorInfo, INotifyPropertyChanged,
IAttachmentOwner
type ITestCase =
interface
interface ITestBase
interface ITestObject<int>
interface IIdentifiable<int>
interface IPropertyOwner
interface IDataErrorInfo
interface INotifyPropertyChanged
interface IAttachmentOwner
end
Public Interface ITestCase
Inherits ITestBase, ITestObject(Of Integer), IIdentifiable(Of Integer),
IPropertyOwner, IDataErrorInfo, INotifyPropertyChanged, IAttachmentOwner
Properties
Name | Description | |
---|---|---|
Actions | Gets a collection of test action objects that are stored in the order that they are to be executed.(Inherited from ITestBase.) |
|
Area | Gets or sets the classification or functional area to which this test belongs.(Inherited from ITestBase.) |
|
Attachments | Gets the collection of attachments.(Inherited from IAttachmentOwner.) |
|
CustomFields | Gets a work item tracking collection of user-defined fields that are registered with the server.(Inherited from ITestBase.) |
|
Data | Gets a DataSet that contains the parameter values that will be used when this test case is executed. |
|
DataReadOnly | Test data tables that are stored in the test case. |
|
DateCreated | Gets the date that this object was created.(Inherited from ITestBase.) |
|
DateModified | Gets the date that this object was last modified.(Inherited from ITestBase.) |
|
DefaultTable | Gets the default table in the DataSet that is returned from the Data property. |
|
DefaultTableReadOnly | Default table that is used for internal binding |
|
Description | Gets or sets the description of this object.(Inherited from ITestBase.) |
|
Error | (Inherited from IDataErrorInfo.) |
|
Exists | Gets a value that indicates whether this object has been destroyed and the caller has access to the object.(Inherited from ITestBase.) |
|
Id | Gets the identifier.(Inherited from IIdentifiable<TKey>.) |
|
Implementation | Gets a reference to the automated test that implements this test case. |
|
InvalidProperties | Gets a list of property names that are invalid.(Inherited from IPropertyOwner.) |
|
IsAutomated | Gets a value that indicates whether the test is automated. |
|
IsDirty | Gets a value that indicates whether any properties have changed since the last refresh, fetch, or save.(Inherited from IPropertyOwner.) |
|
Item[String] | (Inherited from IDataErrorInfo.) |
|
Links | Gets a work item tracking collection of links to other artifacts.(Inherited from ITestBase.) |
|
Owner | Gets or sets the identity of the person who is responsible for this test if it is automated, or the person who is responsible for maintaining the test steps if it is a manual test.(Inherited from ITestBase.) |
|
OwnerName | The person responsible for the automation of this test. If the test is manual, the person responsible for maintaining the test steps.(Inherited from ITestBase.) |
|
OwnerTeamFoundationId | The person responsible for the automation of this test. If the test is manual, the person responsible for maintaining the test steps.(Inherited from ITestBase.) |
|
Priority | Gets or sets the priority for executing this test.(Inherited from ITestBase.) |
|
Project | Gets the test project.(Inherited from ITestObject<T>.) |
|
Reason | Gets or sets the reason that this object is in its current state.(Inherited from ITestBase.) |
|
Revision | Gets the current revision number for this object.(Inherited from ITestObject<T>.) |
|
State | Gets or sets the current state of this object.(Inherited from ITestBase.) |
|
TestParameters | Gets a collection of all parameters that are used in the test steps in this test and all parameters that are included in any shared steps.(Inherited from ITestBase.) |
|
TestSuiteEntry | Creates a new ITestSuiteEntry that contains this test case, which subsequently must be attached to an existing test suite that is in the root suite of a test plan. |
|
Title | Gets or sets the title of this test or step.(Inherited from ITestBase.) |
|
UserData | Gets or sets an arbitrary object or value that is not persisted, but allows test management objects to be dynamically extended.(Inherited from ITestObject<T>.) |
|
WorkItem | Gets the underlying work item.(Inherited from ITestBase.) |
Methods
Name | Description | |
---|---|---|
CreateAttachment(Byte[], Int32, Int32) | Creates an attachment for a test case by using the provided byte array. |
|
CreateAttachment(String) | Creates an attachment from a file. (Inherited from IAttachmentOwner.) |
|
CreateAttachment(String, SourceFileAction) | Creates an attachment from a file, optionally deleting the source file after uploading.(Inherited from IAttachmentOwner.) |
|
CreateSharedStepReference() | If this object is a test case, creates a new shared step reference, which gives access to another set of actions.(Inherited from ITestBase.) |
|
CreateTestActionGroup() | Creates a new test action group, to which steps or other groups may be added.(Inherited from ITestBase.) |
|
CreateTestStep() | Creates a new test step.(Inherited from ITestBase.) |
|
FindAction(Int32) | Returns the specified action from the Actions property by using the given ID number.(Inherited from ITestBase.) |
|
Flush() | Brings the work item fields up to date by using the changes that are made in this object. (Inherited from ITestBase.) |
|
GetReferencedSharedStep(Int32) | Return the shared step referenced by the test case. Returns null if the shared step corresponding to sharedStepId is not referenced by the test case. |
|
GetReferencedSharedStep(Int32, Int32) | Returns a particular revision of the shared step referenced by the testcase. Returns null if the shared step corresponding to sharedStepId is not referenced by the test case. |
|
OverrideParameter(String) | Overrides the specified parameter, which allows for it to be removed from the steps in this specific test case whereas it retains data about the parameter from other iterations.(Inherited from ITestBase.) |
|
Refresh() | Refreshes the current item from the server and resets the values to those that are stored in the item. Any cached data is discarded.(Inherited from ITestBase.) |
|
RenameParameter(String, String) | Renames a parameter by using the provided parameter name and updates all actions that refer to the referenced parameter.(Inherited from ITestBase.) |
|
ReplaceParameter(String, String) | Finds all instances where the provided parameter is used in actions, deletes any iteration data for each instance, and replaces it by using the provided literal text.(Inherited from ITestBase.) |
|
Save() | Brings the work item fields up to date by calling the Flush method and then stores each work item to the server.(Inherited from ITestBase.) |
Events
Name | Description | |
---|---|---|
AttachmentUploadCompleted | This event is raised when the attachment upload is completed.(Inherited from IAttachmentOwner.) |
|
PropertyChanged | (Inherited from INotifyPropertyChanged.) |
|
TestParameterDeletingEvent | The event that is raised when test parameters are about to be deleted.(Inherited from ITestBase.) |
Remarks
No content here will be updated; please do not add material here.
See Also
Microsoft.TeamFoundation.TestManagement.Client Namespace
Return to top