TextTestResultMessage Class

Provides a message that is used by tests to report additional information that the user wants to see in the result.

Inheritance Hierarchy

Object
  Microsoft.VisualStudio.TestTools.Common.TestMessage
    Microsoft.VisualStudio.TestTools.Common.TestResultMessage
      Microsoft.VisualStudio.TestTools.Common.TextTestResultMessage

Namespace:  Microsoft.VisualStudio.TestTools.Common
Assembly:  Microsoft.VisualStudio.QualityTools.Common (in Microsoft.VisualStudio.QualityTools.Common.dll)

Syntax

'Declaration
<SerializableAttribute> _
Public Class TextTestResultMessage _
    Inherits TestResultMessage _
    Implements ISerializable
[SerializableAttribute]
public class TextTestResultMessage : TestResultMessage, 
    ISerializable
[SerializableAttribute]
public ref class TextTestResultMessage : public TestResultMessage, 
    ISerializable
[<SerializableAttribute>]
type TextTestResultMessage =  
    class 
        inherit TestResultMessage 
        interface ISerializable 
    end
public class TextTestResultMessage extends TestResultMessage implements ISerializable

The TextTestResultMessage type exposes the following members.

Constructors

  Name Description
Protected method TextTestResultMessage(SerializationInfo, StreamingContext) Initializes a new instance of the TextTestResultMessage class from serialized XML data by using the provided serialization information and the streaming context.
Public method TextTestResultMessage(Guid, ITestElement, String) Initializes a new instance of the TextTestResultMessage class by using the ID of the test run, the test element, and the message.

Top

Properties

  Name Description
Public property ComputerName Gets the name of the computer that executed the associated test run or test. (Inherited from TestResultMessage.)
Public property DisplayText Gets the text to display in the user interface of Visual Studio Application Lifecycle Management (ALM). (Inherited from TestResultMessage.)
Public property Duration Gets or sets the time that was spent to execute the associated test or test run. (Inherited from TestResultMessage.)
Public property EndTime Gets or sets the time that the execution ended. (Inherited from TestResultMessage.)
Public property Id Gets or sets the ID for this test result message. (Inherited from TestResultMessage.)
Public property IsRunLevel Gets a value that indicates whether this result is for a test run and not for a test. (Inherited from TestResultMessage.)
Public property LoadTestAgentNames Gets a comma-delimited list of the names of machines where the associated load test is installed. (Inherited from TestResultMessage.)
Public property LongText Gets the value of the DisplayText property. (Inherited from TestResultMessage.)
Public property MessageKind Gets or sets the kind of test result message for this associated test result message. (Inherited from TestResultMessage.)
Public property SpoolMessage Gets or sets a value that determines whether this message will be spooled into the persisted test results. (Inherited from TestResultMessage.)
Public property StartTime Gets or sets the time that the associated test run or test started. (Inherited from TestResultMessage.)
Public property Storage Gets or sets the relative path of a folder where all files that are associated with the test are stored on the server. (Inherited from TestResultMessage.)
Public property SystemException Gets or sets the most recent exception that was encountered during the associated test run or test. (Inherited from TestResultMessage.)
Public property TestName Gets or sets the name of the associated test. (Inherited from TestResultMessage.)
Public property TestType Gets or sets the type for the associated test. (Inherited from TestResultMessage.)
Public property Text Gets the text that is associated with the test.
Public property VisibleProperties Gets a collection of the properties in this test result message that will be visible in the user interface of Visual Studio Application Lifecycle Management (ALM). (Inherited from TestResultMessage.)

Top

Methods

  Name Description
Public method Clone Returns a deep copy of this test result message. (Inherited from TestResultMessage.)
Public method Equals Determines whether the provided object is equal to the current object. (Inherited from TestResultMessage.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetHashCode Serves as the default hash function. (Inherited from TestResultMessage.)
Public method GetObjectData Populates a SerializationInfo with the data that is required to serialize the target object. (Overrides TestResultMessage.GetObjectData(SerializationInfo, StreamingContext).)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Public method IsValid Determines whether this test result message is valid. (Inherited from TestResultMessage.)
Public method Load Loads an instance of this class from the provided XML element by using the provided XML store parameters. (Inherited from TestResultMessage.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method Save Saves this object in the provided XML element. (Inherited from TestResultMessage.)
Public method ToString Returns a string representation of the test result message. (Overrides TestResultMessage.ToString().)

Top

Fields

  Name Description
Protected field m_duration Infrastructure. Returns the value of the Duration property. (Inherited from TestResultMessage.)
Protected field m_endTime Returns the value of the EndTime property. (Inherited from TestResultMessage.)
Protected field m_exception Returns the value of the SystemException property. (Inherited from TestResultMessage.)
Protected field m_id Returns the value of the ID property. (Inherited from TestResultMessage.)
Protected field m_messageKind Returns the value of the MessageKind property. (Inherited from TestResultMessage.)
Protected field m_spoolMessage Returns the value of the SpoolMessage property. (Inherited from TestResultMessage.)
Protected field m_startTime Returns the value of the StartTime property. (Inherited from TestResultMessage.)
Protected field m_testName Returns the value of the TestName property. (Inherited from TestResultMessage.)
Protected field m_testType Returns the value of the TestType property. (Inherited from TestResultMessage.)

Top

Remarks

The message is sent in a text format by using the WriteLine method.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

Microsoft.VisualStudio.TestTools.Common Namespace

TestResultMessage