update of local deps cache

This commit is contained in:
master
2025-11-21 06:52:58 +00:00
parent 79b8e53441
commit ca35db9ef4
786 changed files with 1749002 additions and 1740601 deletions

View File

@@ -1,36 +1,36 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Microsoft.Testing.Extensions.TrxReport.Abstractions</id>
<version>1.7.3</version>
<authors>Microsoft</authors>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<license type="expression">MIT</license>
<licenseUrl>https://licenses.nuget.org/MIT</licenseUrl>
<icon>Icon.png</icon>
<readme>PACKAGE.md</readme>
<projectUrl>https://github.com/microsoft/testfx</projectUrl>
<description>Package Description</description>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<tags>Microsoft test testing unittest unittesting unit-testing tdd</tags>
<serviceable>true</serviceable>
<repository type="git" url="https://github.com/microsoft/testfx" commit="5abdae1f2e07071c4e81b27ac262f241708ec3cf" />
<dependencies>
<group targetFramework="net6.0">
<dependency id="Microsoft.Testing.Platform" version="1.7.3" exclude="Build,Analyzers" />
</group>
<group targetFramework="net7.0">
<dependency id="Microsoft.Testing.Platform" version="1.7.3" exclude="Build,Analyzers" />
</group>
<group targetFramework="net8.0">
<dependency id="Microsoft.Testing.Platform" version="1.7.3" exclude="Build,Analyzers" />
</group>
<group targetFramework="net9.0">
<dependency id="Microsoft.Testing.Platform" version="1.7.3" exclude="Build,Analyzers" />
</group>
<group targetFramework=".NETStandard2.0">
<dependency id="Microsoft.Testing.Platform" version="1.7.3" exclude="Build,Analyzers" />
</group>
</dependencies>
</metadata>
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Microsoft.Testing.Extensions.TrxReport.Abstractions</id>
<version>1.7.3</version>
<authors>Microsoft</authors>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<license type="expression">MIT</license>
<licenseUrl>https://licenses.nuget.org/MIT</licenseUrl>
<icon>Icon.png</icon>
<readme>PACKAGE.md</readme>
<projectUrl>https://github.com/microsoft/testfx</projectUrl>
<description>Package Description</description>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<tags>Microsoft test testing unittest unittesting unit-testing tdd</tags>
<serviceable>true</serviceable>
<repository type="git" url="https://github.com/microsoft/testfx" commit="5abdae1f2e07071c4e81b27ac262f241708ec3cf" />
<dependencies>
<group targetFramework="net6.0">
<dependency id="Microsoft.Testing.Platform" version="1.7.3" exclude="Build,Analyzers" />
</group>
<group targetFramework="net7.0">
<dependency id="Microsoft.Testing.Platform" version="1.7.3" exclude="Build,Analyzers" />
</group>
<group targetFramework="net8.0">
<dependency id="Microsoft.Testing.Platform" version="1.7.3" exclude="Build,Analyzers" />
</group>
<group targetFramework="net9.0">
<dependency id="Microsoft.Testing.Platform" version="1.7.3" exclude="Build,Analyzers" />
</group>
<group targetFramework=".NETStandard2.0">
<dependency id="Microsoft.Testing.Platform" version="1.7.3" exclude="Build,Analyzers" />
</group>
</dependencies>
</metadata>
</package>

View File

@@ -1,11 +1,11 @@
# Microsoft.Testing
Microsoft Testing is a set of platform, framework and protocol intended to make it possible to run any test on any target or device.
Documentation can be found at <https://aka.ms/testingplatform>.
## About
This package provides interfaces and data objects used by extensions willing to interoperate with TRX functionality.
This package does not bring support for telemetry, for this you would need to install Microsoft.Testing.Extensions.TrxReport package.
# Microsoft.Testing
Microsoft Testing is a set of platform, framework and protocol intended to make it possible to run any test on any target or device.
Documentation can be found at <https://aka.ms/testingplatform>.
## About
This package provides interfaces and data objects used by extensions willing to interoperate with TRX functionality.
This package does not bring support for telemetry, for this you would need to install Microsoft.Testing.Extensions.TrxReport package.

View File

@@ -1,147 +1,147 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Testing.Extensions.TrxReport.Abstractions</name>
</assembly>
<members>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability">
<summary>
This capability is used to indicate whether or not the test framework supports trx report generation.
By supporting trx generation, the test adapter should ensure that some required properties are available
for all the nodes.
We expect these properties in the node bag:
- 1 <c>trxreport.classname</c>
- 0..n <c>trxreport.testcategory</c>
And, in case of exception, the following extra properties:
- <c>trxreport.exceptionmessage</c>
- <c>trxreport.exceptionstacktrace</c>.
</summary>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability.IsSupported">
<summary>
Gets a value indicating whether indicates if the test framework supports trx report properties enrichment.
</summary>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability.Enable">
<summary>
Notifies the test framework that the trx report is enabled and trx report properties should be added to the test nodes.
</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty">
<summary>
Represents an exception to report in the TRX file.
</summary>
<param name="Message">The exception message.</param>
<param name="StackTrace">The exception stack trace.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.#ctor(System.String,System.String)">
<summary>
Represents an exception to report in the TRX file.
</summary>
<param name="Message">The exception message.</param>
<param name="StackTrace">The exception stack trace.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.Message">
<summary>The exception message.</summary>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.StackTrace">
<summary>The exception stack trace.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty">
<summary>
A property that represents the fully qualified type name to be reported in the TRX file.
</summary>
<param name="FullyQualifiedTypeName">The fully qualified type name.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty.#ctor(System.String)">
<summary>
A property that represents the fully qualified type name to be reported in the TRX file.
</summary>
<param name="FullyQualifiedTypeName">The fully qualified type name.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty.FullyQualifiedTypeName">
<summary>The fully qualified type name.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage">
<summary>
A property that represents a message to be reported in the TRX file.
</summary>
<param name="Message">The message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage.#ctor(System.String)">
<summary>
A property that represents a message to be reported in the TRX file.
</summary>
<param name="Message">The message.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage.Message">
<summary>The message.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardErrorTrxMessage">
<summary>
A property that represents the standard error message to be reported in the TRX file.
</summary>
<param name="Message">The standard error message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardErrorTrxMessage.#ctor(System.String)">
<summary>
A property that represents the standard error message to be reported in the TRX file.
</summary>
<param name="Message">The standard error message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardOutputTrxMessage">
<summary>
A property that represents the standard output message to be reported in the TRX file.
</summary>
<param name="Message">The standard output message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardOutputTrxMessage.#ctor(System.String)">
<summary>
A property that represents the standard output message to be reported in the TRX file.
</summary>
<param name="Message">The standard output message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.DebugOrTraceTrxMessage">
<summary>
A property that represents a debug or trace message to be reported in the TRX file.
</summary>
<param name="Message">The debug or trace message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.DebugOrTraceTrxMessage.#ctor(System.String)">
<summary>
A property that represents a debug or trace message to be reported in the TRX file.
</summary>
<param name="Message">The debug or trace message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty">
<summary>
A property that represents the messages to be reported in the TRX file.
</summary>
<param name="Messages">The TRX message properties.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty.#ctor(Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage[])">
<summary>
A property that represents the messages to be reported in the TRX file.
</summary>
<param name="Messages">The TRX message properties.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty.Messages">
<summary>The TRX message properties.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty">
<summary>
A property that represents the categories to be reported in the TRX file.
</summary>
<param name="Categories">The categories.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty.#ctor(System.String[])">
<summary>
A property that represents the categories to be reported in the TRX file.
</summary>
<param name="Categories">The categories.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty.Categories">
<summary>The categories.</summary>
</member>
</members>
</doc>
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Testing.Extensions.TrxReport.Abstractions</name>
</assembly>
<members>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability">
<summary>
This capability is used to indicate whether or not the test framework supports trx report generation.
By supporting trx generation, the test adapter should ensure that some required properties are available
for all the nodes.
We expect these properties in the node bag:
- 1 <c>trxreport.classname</c>
- 0..n <c>trxreport.testcategory</c>
And, in case of exception, the following extra properties:
- <c>trxreport.exceptionmessage</c>
- <c>trxreport.exceptionstacktrace</c>.
</summary>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability.IsSupported">
<summary>
Gets a value indicating whether indicates if the test framework supports trx report properties enrichment.
</summary>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability.Enable">
<summary>
Notifies the test framework that the trx report is enabled and trx report properties should be added to the test nodes.
</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty">
<summary>
Represents an exception to report in the TRX file.
</summary>
<param name="Message">The exception message.</param>
<param name="StackTrace">The exception stack trace.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.#ctor(System.String,System.String)">
<summary>
Represents an exception to report in the TRX file.
</summary>
<param name="Message">The exception message.</param>
<param name="StackTrace">The exception stack trace.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.Message">
<summary>The exception message.</summary>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.StackTrace">
<summary>The exception stack trace.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty">
<summary>
A property that represents the fully qualified type name to be reported in the TRX file.
</summary>
<param name="FullyQualifiedTypeName">The fully qualified type name.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty.#ctor(System.String)">
<summary>
A property that represents the fully qualified type name to be reported in the TRX file.
</summary>
<param name="FullyQualifiedTypeName">The fully qualified type name.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty.FullyQualifiedTypeName">
<summary>The fully qualified type name.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage">
<summary>
A property that represents a message to be reported in the TRX file.
</summary>
<param name="Message">The message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage.#ctor(System.String)">
<summary>
A property that represents a message to be reported in the TRX file.
</summary>
<param name="Message">The message.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage.Message">
<summary>The message.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardErrorTrxMessage">
<summary>
A property that represents the standard error message to be reported in the TRX file.
</summary>
<param name="Message">The standard error message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardErrorTrxMessage.#ctor(System.String)">
<summary>
A property that represents the standard error message to be reported in the TRX file.
</summary>
<param name="Message">The standard error message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardOutputTrxMessage">
<summary>
A property that represents the standard output message to be reported in the TRX file.
</summary>
<param name="Message">The standard output message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardOutputTrxMessage.#ctor(System.String)">
<summary>
A property that represents the standard output message to be reported in the TRX file.
</summary>
<param name="Message">The standard output message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.DebugOrTraceTrxMessage">
<summary>
A property that represents a debug or trace message to be reported in the TRX file.
</summary>
<param name="Message">The debug or trace message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.DebugOrTraceTrxMessage.#ctor(System.String)">
<summary>
A property that represents a debug or trace message to be reported in the TRX file.
</summary>
<param name="Message">The debug or trace message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty">
<summary>
A property that represents the messages to be reported in the TRX file.
</summary>
<param name="Messages">The TRX message properties.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty.#ctor(Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage[])">
<summary>
A property that represents the messages to be reported in the TRX file.
</summary>
<param name="Messages">The TRX message properties.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty.Messages">
<summary>The TRX message properties.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty">
<summary>
A property that represents the categories to be reported in the TRX file.
</summary>
<param name="Categories">The categories.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty.#ctor(System.String[])">
<summary>
A property that represents the categories to be reported in the TRX file.
</summary>
<param name="Categories">The categories.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty.Categories">
<summary>The categories.</summary>
</member>
</members>
</doc>

View File

@@ -1,147 +1,147 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Testing.Extensions.TrxReport.Abstractions</name>
</assembly>
<members>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability">
<summary>
This capability is used to indicate whether or not the test framework supports trx report generation.
By supporting trx generation, the test adapter should ensure that some required properties are available
for all the nodes.
We expect these properties in the node bag:
- 1 <c>trxreport.classname</c>
- 0..n <c>trxreport.testcategory</c>
And, in case of exception, the following extra properties:
- <c>trxreport.exceptionmessage</c>
- <c>trxreport.exceptionstacktrace</c>.
</summary>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability.IsSupported">
<summary>
Gets a value indicating whether indicates if the test framework supports trx report properties enrichment.
</summary>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability.Enable">
<summary>
Notifies the test framework that the trx report is enabled and trx report properties should be added to the test nodes.
</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty">
<summary>
Represents an exception to report in the TRX file.
</summary>
<param name="Message">The exception message.</param>
<param name="StackTrace">The exception stack trace.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.#ctor(System.String,System.String)">
<summary>
Represents an exception to report in the TRX file.
</summary>
<param name="Message">The exception message.</param>
<param name="StackTrace">The exception stack trace.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.Message">
<summary>The exception message.</summary>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.StackTrace">
<summary>The exception stack trace.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty">
<summary>
A property that represents the fully qualified type name to be reported in the TRX file.
</summary>
<param name="FullyQualifiedTypeName">The fully qualified type name.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty.#ctor(System.String)">
<summary>
A property that represents the fully qualified type name to be reported in the TRX file.
</summary>
<param name="FullyQualifiedTypeName">The fully qualified type name.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty.FullyQualifiedTypeName">
<summary>The fully qualified type name.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage">
<summary>
A property that represents a message to be reported in the TRX file.
</summary>
<param name="Message">The message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage.#ctor(System.String)">
<summary>
A property that represents a message to be reported in the TRX file.
</summary>
<param name="Message">The message.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage.Message">
<summary>The message.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardErrorTrxMessage">
<summary>
A property that represents the standard error message to be reported in the TRX file.
</summary>
<param name="Message">The standard error message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardErrorTrxMessage.#ctor(System.String)">
<summary>
A property that represents the standard error message to be reported in the TRX file.
</summary>
<param name="Message">The standard error message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardOutputTrxMessage">
<summary>
A property that represents the standard output message to be reported in the TRX file.
</summary>
<param name="Message">The standard output message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardOutputTrxMessage.#ctor(System.String)">
<summary>
A property that represents the standard output message to be reported in the TRX file.
</summary>
<param name="Message">The standard output message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.DebugOrTraceTrxMessage">
<summary>
A property that represents a debug or trace message to be reported in the TRX file.
</summary>
<param name="Message">The debug or trace message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.DebugOrTraceTrxMessage.#ctor(System.String)">
<summary>
A property that represents a debug or trace message to be reported in the TRX file.
</summary>
<param name="Message">The debug or trace message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty">
<summary>
A property that represents the messages to be reported in the TRX file.
</summary>
<param name="Messages">The TRX message properties.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty.#ctor(Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage[])">
<summary>
A property that represents the messages to be reported in the TRX file.
</summary>
<param name="Messages">The TRX message properties.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty.Messages">
<summary>The TRX message properties.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty">
<summary>
A property that represents the categories to be reported in the TRX file.
</summary>
<param name="Categories">The categories.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty.#ctor(System.String[])">
<summary>
A property that represents the categories to be reported in the TRX file.
</summary>
<param name="Categories">The categories.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty.Categories">
<summary>The categories.</summary>
</member>
</members>
</doc>
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Testing.Extensions.TrxReport.Abstractions</name>
</assembly>
<members>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability">
<summary>
This capability is used to indicate whether or not the test framework supports trx report generation.
By supporting trx generation, the test adapter should ensure that some required properties are available
for all the nodes.
We expect these properties in the node bag:
- 1 <c>trxreport.classname</c>
- 0..n <c>trxreport.testcategory</c>
And, in case of exception, the following extra properties:
- <c>trxreport.exceptionmessage</c>
- <c>trxreport.exceptionstacktrace</c>.
</summary>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability.IsSupported">
<summary>
Gets a value indicating whether indicates if the test framework supports trx report properties enrichment.
</summary>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability.Enable">
<summary>
Notifies the test framework that the trx report is enabled and trx report properties should be added to the test nodes.
</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty">
<summary>
Represents an exception to report in the TRX file.
</summary>
<param name="Message">The exception message.</param>
<param name="StackTrace">The exception stack trace.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.#ctor(System.String,System.String)">
<summary>
Represents an exception to report in the TRX file.
</summary>
<param name="Message">The exception message.</param>
<param name="StackTrace">The exception stack trace.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.Message">
<summary>The exception message.</summary>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.StackTrace">
<summary>The exception stack trace.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty">
<summary>
A property that represents the fully qualified type name to be reported in the TRX file.
</summary>
<param name="FullyQualifiedTypeName">The fully qualified type name.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty.#ctor(System.String)">
<summary>
A property that represents the fully qualified type name to be reported in the TRX file.
</summary>
<param name="FullyQualifiedTypeName">The fully qualified type name.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty.FullyQualifiedTypeName">
<summary>The fully qualified type name.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage">
<summary>
A property that represents a message to be reported in the TRX file.
</summary>
<param name="Message">The message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage.#ctor(System.String)">
<summary>
A property that represents a message to be reported in the TRX file.
</summary>
<param name="Message">The message.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage.Message">
<summary>The message.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardErrorTrxMessage">
<summary>
A property that represents the standard error message to be reported in the TRX file.
</summary>
<param name="Message">The standard error message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardErrorTrxMessage.#ctor(System.String)">
<summary>
A property that represents the standard error message to be reported in the TRX file.
</summary>
<param name="Message">The standard error message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardOutputTrxMessage">
<summary>
A property that represents the standard output message to be reported in the TRX file.
</summary>
<param name="Message">The standard output message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardOutputTrxMessage.#ctor(System.String)">
<summary>
A property that represents the standard output message to be reported in the TRX file.
</summary>
<param name="Message">The standard output message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.DebugOrTraceTrxMessage">
<summary>
A property that represents a debug or trace message to be reported in the TRX file.
</summary>
<param name="Message">The debug or trace message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.DebugOrTraceTrxMessage.#ctor(System.String)">
<summary>
A property that represents a debug or trace message to be reported in the TRX file.
</summary>
<param name="Message">The debug or trace message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty">
<summary>
A property that represents the messages to be reported in the TRX file.
</summary>
<param name="Messages">The TRX message properties.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty.#ctor(Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage[])">
<summary>
A property that represents the messages to be reported in the TRX file.
</summary>
<param name="Messages">The TRX message properties.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty.Messages">
<summary>The TRX message properties.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty">
<summary>
A property that represents the categories to be reported in the TRX file.
</summary>
<param name="Categories">The categories.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty.#ctor(System.String[])">
<summary>
A property that represents the categories to be reported in the TRX file.
</summary>
<param name="Categories">The categories.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty.Categories">
<summary>The categories.</summary>
</member>
</members>
</doc>

View File

@@ -1,147 +1,147 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Testing.Extensions.TrxReport.Abstractions</name>
</assembly>
<members>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability">
<summary>
This capability is used to indicate whether or not the test framework supports trx report generation.
By supporting trx generation, the test adapter should ensure that some required properties are available
for all the nodes.
We expect these properties in the node bag:
- 1 <c>trxreport.classname</c>
- 0..n <c>trxreport.testcategory</c>
And, in case of exception, the following extra properties:
- <c>trxreport.exceptionmessage</c>
- <c>trxreport.exceptionstacktrace</c>.
</summary>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability.IsSupported">
<summary>
Gets a value indicating whether indicates if the test framework supports trx report properties enrichment.
</summary>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability.Enable">
<summary>
Notifies the test framework that the trx report is enabled and trx report properties should be added to the test nodes.
</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty">
<summary>
Represents an exception to report in the TRX file.
</summary>
<param name="Message">The exception message.</param>
<param name="StackTrace">The exception stack trace.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.#ctor(System.String,System.String)">
<summary>
Represents an exception to report in the TRX file.
</summary>
<param name="Message">The exception message.</param>
<param name="StackTrace">The exception stack trace.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.Message">
<summary>The exception message.</summary>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.StackTrace">
<summary>The exception stack trace.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty">
<summary>
A property that represents the fully qualified type name to be reported in the TRX file.
</summary>
<param name="FullyQualifiedTypeName">The fully qualified type name.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty.#ctor(System.String)">
<summary>
A property that represents the fully qualified type name to be reported in the TRX file.
</summary>
<param name="FullyQualifiedTypeName">The fully qualified type name.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty.FullyQualifiedTypeName">
<summary>The fully qualified type name.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage">
<summary>
A property that represents a message to be reported in the TRX file.
</summary>
<param name="Message">The message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage.#ctor(System.String)">
<summary>
A property that represents a message to be reported in the TRX file.
</summary>
<param name="Message">The message.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage.Message">
<summary>The message.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardErrorTrxMessage">
<summary>
A property that represents the standard error message to be reported in the TRX file.
</summary>
<param name="Message">The standard error message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardErrorTrxMessage.#ctor(System.String)">
<summary>
A property that represents the standard error message to be reported in the TRX file.
</summary>
<param name="Message">The standard error message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardOutputTrxMessage">
<summary>
A property that represents the standard output message to be reported in the TRX file.
</summary>
<param name="Message">The standard output message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardOutputTrxMessage.#ctor(System.String)">
<summary>
A property that represents the standard output message to be reported in the TRX file.
</summary>
<param name="Message">The standard output message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.DebugOrTraceTrxMessage">
<summary>
A property that represents a debug or trace message to be reported in the TRX file.
</summary>
<param name="Message">The debug or trace message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.DebugOrTraceTrxMessage.#ctor(System.String)">
<summary>
A property that represents a debug or trace message to be reported in the TRX file.
</summary>
<param name="Message">The debug or trace message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty">
<summary>
A property that represents the messages to be reported in the TRX file.
</summary>
<param name="Messages">The TRX message properties.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty.#ctor(Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage[])">
<summary>
A property that represents the messages to be reported in the TRX file.
</summary>
<param name="Messages">The TRX message properties.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty.Messages">
<summary>The TRX message properties.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty">
<summary>
A property that represents the categories to be reported in the TRX file.
</summary>
<param name="Categories">The categories.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty.#ctor(System.String[])">
<summary>
A property that represents the categories to be reported in the TRX file.
</summary>
<param name="Categories">The categories.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty.Categories">
<summary>The categories.</summary>
</member>
</members>
</doc>
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Testing.Extensions.TrxReport.Abstractions</name>
</assembly>
<members>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability">
<summary>
This capability is used to indicate whether or not the test framework supports trx report generation.
By supporting trx generation, the test adapter should ensure that some required properties are available
for all the nodes.
We expect these properties in the node bag:
- 1 <c>trxreport.classname</c>
- 0..n <c>trxreport.testcategory</c>
And, in case of exception, the following extra properties:
- <c>trxreport.exceptionmessage</c>
- <c>trxreport.exceptionstacktrace</c>.
</summary>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability.IsSupported">
<summary>
Gets a value indicating whether indicates if the test framework supports trx report properties enrichment.
</summary>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability.Enable">
<summary>
Notifies the test framework that the trx report is enabled and trx report properties should be added to the test nodes.
</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty">
<summary>
Represents an exception to report in the TRX file.
</summary>
<param name="Message">The exception message.</param>
<param name="StackTrace">The exception stack trace.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.#ctor(System.String,System.String)">
<summary>
Represents an exception to report in the TRX file.
</summary>
<param name="Message">The exception message.</param>
<param name="StackTrace">The exception stack trace.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.Message">
<summary>The exception message.</summary>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.StackTrace">
<summary>The exception stack trace.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty">
<summary>
A property that represents the fully qualified type name to be reported in the TRX file.
</summary>
<param name="FullyQualifiedTypeName">The fully qualified type name.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty.#ctor(System.String)">
<summary>
A property that represents the fully qualified type name to be reported in the TRX file.
</summary>
<param name="FullyQualifiedTypeName">The fully qualified type name.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty.FullyQualifiedTypeName">
<summary>The fully qualified type name.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage">
<summary>
A property that represents a message to be reported in the TRX file.
</summary>
<param name="Message">The message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage.#ctor(System.String)">
<summary>
A property that represents a message to be reported in the TRX file.
</summary>
<param name="Message">The message.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage.Message">
<summary>The message.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardErrorTrxMessage">
<summary>
A property that represents the standard error message to be reported in the TRX file.
</summary>
<param name="Message">The standard error message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardErrorTrxMessage.#ctor(System.String)">
<summary>
A property that represents the standard error message to be reported in the TRX file.
</summary>
<param name="Message">The standard error message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardOutputTrxMessage">
<summary>
A property that represents the standard output message to be reported in the TRX file.
</summary>
<param name="Message">The standard output message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardOutputTrxMessage.#ctor(System.String)">
<summary>
A property that represents the standard output message to be reported in the TRX file.
</summary>
<param name="Message">The standard output message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.DebugOrTraceTrxMessage">
<summary>
A property that represents a debug or trace message to be reported in the TRX file.
</summary>
<param name="Message">The debug or trace message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.DebugOrTraceTrxMessage.#ctor(System.String)">
<summary>
A property that represents a debug or trace message to be reported in the TRX file.
</summary>
<param name="Message">The debug or trace message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty">
<summary>
A property that represents the messages to be reported in the TRX file.
</summary>
<param name="Messages">The TRX message properties.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty.#ctor(Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage[])">
<summary>
A property that represents the messages to be reported in the TRX file.
</summary>
<param name="Messages">The TRX message properties.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty.Messages">
<summary>The TRX message properties.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty">
<summary>
A property that represents the categories to be reported in the TRX file.
</summary>
<param name="Categories">The categories.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty.#ctor(System.String[])">
<summary>
A property that represents the categories to be reported in the TRX file.
</summary>
<param name="Categories">The categories.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty.Categories">
<summary>The categories.</summary>
</member>
</members>
</doc>

View File

@@ -1,147 +1,147 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Testing.Extensions.TrxReport.Abstractions</name>
</assembly>
<members>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability">
<summary>
This capability is used to indicate whether or not the test framework supports trx report generation.
By supporting trx generation, the test adapter should ensure that some required properties are available
for all the nodes.
We expect these properties in the node bag:
- 1 <c>trxreport.classname</c>
- 0..n <c>trxreport.testcategory</c>
And, in case of exception, the following extra properties:
- <c>trxreport.exceptionmessage</c>
- <c>trxreport.exceptionstacktrace</c>.
</summary>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability.IsSupported">
<summary>
Gets a value indicating whether indicates if the test framework supports trx report properties enrichment.
</summary>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability.Enable">
<summary>
Notifies the test framework that the trx report is enabled and trx report properties should be added to the test nodes.
</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty">
<summary>
Represents an exception to report in the TRX file.
</summary>
<param name="Message">The exception message.</param>
<param name="StackTrace">The exception stack trace.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.#ctor(System.String,System.String)">
<summary>
Represents an exception to report in the TRX file.
</summary>
<param name="Message">The exception message.</param>
<param name="StackTrace">The exception stack trace.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.Message">
<summary>The exception message.</summary>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.StackTrace">
<summary>The exception stack trace.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty">
<summary>
A property that represents the fully qualified type name to be reported in the TRX file.
</summary>
<param name="FullyQualifiedTypeName">The fully qualified type name.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty.#ctor(System.String)">
<summary>
A property that represents the fully qualified type name to be reported in the TRX file.
</summary>
<param name="FullyQualifiedTypeName">The fully qualified type name.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty.FullyQualifiedTypeName">
<summary>The fully qualified type name.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage">
<summary>
A property that represents a message to be reported in the TRX file.
</summary>
<param name="Message">The message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage.#ctor(System.String)">
<summary>
A property that represents a message to be reported in the TRX file.
</summary>
<param name="Message">The message.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage.Message">
<summary>The message.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardErrorTrxMessage">
<summary>
A property that represents the standard error message to be reported in the TRX file.
</summary>
<param name="Message">The standard error message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardErrorTrxMessage.#ctor(System.String)">
<summary>
A property that represents the standard error message to be reported in the TRX file.
</summary>
<param name="Message">The standard error message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardOutputTrxMessage">
<summary>
A property that represents the standard output message to be reported in the TRX file.
</summary>
<param name="Message">The standard output message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardOutputTrxMessage.#ctor(System.String)">
<summary>
A property that represents the standard output message to be reported in the TRX file.
</summary>
<param name="Message">The standard output message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.DebugOrTraceTrxMessage">
<summary>
A property that represents a debug or trace message to be reported in the TRX file.
</summary>
<param name="Message">The debug or trace message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.DebugOrTraceTrxMessage.#ctor(System.String)">
<summary>
A property that represents a debug or trace message to be reported in the TRX file.
</summary>
<param name="Message">The debug or trace message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty">
<summary>
A property that represents the messages to be reported in the TRX file.
</summary>
<param name="Messages">The TRX message properties.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty.#ctor(Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage[])">
<summary>
A property that represents the messages to be reported in the TRX file.
</summary>
<param name="Messages">The TRX message properties.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty.Messages">
<summary>The TRX message properties.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty">
<summary>
A property that represents the categories to be reported in the TRX file.
</summary>
<param name="Categories">The categories.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty.#ctor(System.String[])">
<summary>
A property that represents the categories to be reported in the TRX file.
</summary>
<param name="Categories">The categories.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty.Categories">
<summary>The categories.</summary>
</member>
</members>
</doc>
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Testing.Extensions.TrxReport.Abstractions</name>
</assembly>
<members>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability">
<summary>
This capability is used to indicate whether or not the test framework supports trx report generation.
By supporting trx generation, the test adapter should ensure that some required properties are available
for all the nodes.
We expect these properties in the node bag:
- 1 <c>trxreport.classname</c>
- 0..n <c>trxreport.testcategory</c>
And, in case of exception, the following extra properties:
- <c>trxreport.exceptionmessage</c>
- <c>trxreport.exceptionstacktrace</c>.
</summary>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability.IsSupported">
<summary>
Gets a value indicating whether indicates if the test framework supports trx report properties enrichment.
</summary>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability.Enable">
<summary>
Notifies the test framework that the trx report is enabled and trx report properties should be added to the test nodes.
</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty">
<summary>
Represents an exception to report in the TRX file.
</summary>
<param name="Message">The exception message.</param>
<param name="StackTrace">The exception stack trace.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.#ctor(System.String,System.String)">
<summary>
Represents an exception to report in the TRX file.
</summary>
<param name="Message">The exception message.</param>
<param name="StackTrace">The exception stack trace.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.Message">
<summary>The exception message.</summary>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.StackTrace">
<summary>The exception stack trace.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty">
<summary>
A property that represents the fully qualified type name to be reported in the TRX file.
</summary>
<param name="FullyQualifiedTypeName">The fully qualified type name.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty.#ctor(System.String)">
<summary>
A property that represents the fully qualified type name to be reported in the TRX file.
</summary>
<param name="FullyQualifiedTypeName">The fully qualified type name.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty.FullyQualifiedTypeName">
<summary>The fully qualified type name.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage">
<summary>
A property that represents a message to be reported in the TRX file.
</summary>
<param name="Message">The message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage.#ctor(System.String)">
<summary>
A property that represents a message to be reported in the TRX file.
</summary>
<param name="Message">The message.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage.Message">
<summary>The message.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardErrorTrxMessage">
<summary>
A property that represents the standard error message to be reported in the TRX file.
</summary>
<param name="Message">The standard error message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardErrorTrxMessage.#ctor(System.String)">
<summary>
A property that represents the standard error message to be reported in the TRX file.
</summary>
<param name="Message">The standard error message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardOutputTrxMessage">
<summary>
A property that represents the standard output message to be reported in the TRX file.
</summary>
<param name="Message">The standard output message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardOutputTrxMessage.#ctor(System.String)">
<summary>
A property that represents the standard output message to be reported in the TRX file.
</summary>
<param name="Message">The standard output message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.DebugOrTraceTrxMessage">
<summary>
A property that represents a debug or trace message to be reported in the TRX file.
</summary>
<param name="Message">The debug or trace message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.DebugOrTraceTrxMessage.#ctor(System.String)">
<summary>
A property that represents a debug or trace message to be reported in the TRX file.
</summary>
<param name="Message">The debug or trace message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty">
<summary>
A property that represents the messages to be reported in the TRX file.
</summary>
<param name="Messages">The TRX message properties.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty.#ctor(Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage[])">
<summary>
A property that represents the messages to be reported in the TRX file.
</summary>
<param name="Messages">The TRX message properties.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty.Messages">
<summary>The TRX message properties.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty">
<summary>
A property that represents the categories to be reported in the TRX file.
</summary>
<param name="Categories">The categories.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty.#ctor(System.String[])">
<summary>
A property that represents the categories to be reported in the TRX file.
</summary>
<param name="Categories">The categories.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty.Categories">
<summary>The categories.</summary>
</member>
</members>
</doc>

View File

@@ -1,147 +1,147 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Testing.Extensions.TrxReport.Abstractions</name>
</assembly>
<members>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability">
<summary>
This capability is used to indicate whether or not the test framework supports trx report generation.
By supporting trx generation, the test adapter should ensure that some required properties are available
for all the nodes.
We expect these properties in the node bag:
- 1 <c>trxreport.classname</c>
- 0..n <c>trxreport.testcategory</c>
And, in case of exception, the following extra properties:
- <c>trxreport.exceptionmessage</c>
- <c>trxreport.exceptionstacktrace</c>.
</summary>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability.IsSupported">
<summary>
Gets a value indicating whether indicates if the test framework supports trx report properties enrichment.
</summary>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability.Enable">
<summary>
Notifies the test framework that the trx report is enabled and trx report properties should be added to the test nodes.
</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty">
<summary>
Represents an exception to report in the TRX file.
</summary>
<param name="Message">The exception message.</param>
<param name="StackTrace">The exception stack trace.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.#ctor(System.String,System.String)">
<summary>
Represents an exception to report in the TRX file.
</summary>
<param name="Message">The exception message.</param>
<param name="StackTrace">The exception stack trace.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.Message">
<summary>The exception message.</summary>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.StackTrace">
<summary>The exception stack trace.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty">
<summary>
A property that represents the fully qualified type name to be reported in the TRX file.
</summary>
<param name="FullyQualifiedTypeName">The fully qualified type name.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty.#ctor(System.String)">
<summary>
A property that represents the fully qualified type name to be reported in the TRX file.
</summary>
<param name="FullyQualifiedTypeName">The fully qualified type name.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty.FullyQualifiedTypeName">
<summary>The fully qualified type name.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage">
<summary>
A property that represents a message to be reported in the TRX file.
</summary>
<param name="Message">The message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage.#ctor(System.String)">
<summary>
A property that represents a message to be reported in the TRX file.
</summary>
<param name="Message">The message.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage.Message">
<summary>The message.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardErrorTrxMessage">
<summary>
A property that represents the standard error message to be reported in the TRX file.
</summary>
<param name="Message">The standard error message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardErrorTrxMessage.#ctor(System.String)">
<summary>
A property that represents the standard error message to be reported in the TRX file.
</summary>
<param name="Message">The standard error message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardOutputTrxMessage">
<summary>
A property that represents the standard output message to be reported in the TRX file.
</summary>
<param name="Message">The standard output message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardOutputTrxMessage.#ctor(System.String)">
<summary>
A property that represents the standard output message to be reported in the TRX file.
</summary>
<param name="Message">The standard output message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.DebugOrTraceTrxMessage">
<summary>
A property that represents a debug or trace message to be reported in the TRX file.
</summary>
<param name="Message">The debug or trace message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.DebugOrTraceTrxMessage.#ctor(System.String)">
<summary>
A property that represents a debug or trace message to be reported in the TRX file.
</summary>
<param name="Message">The debug or trace message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty">
<summary>
A property that represents the messages to be reported in the TRX file.
</summary>
<param name="Messages">The TRX message properties.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty.#ctor(Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage[])">
<summary>
A property that represents the messages to be reported in the TRX file.
</summary>
<param name="Messages">The TRX message properties.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty.Messages">
<summary>The TRX message properties.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty">
<summary>
A property that represents the categories to be reported in the TRX file.
</summary>
<param name="Categories">The categories.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty.#ctor(System.String[])">
<summary>
A property that represents the categories to be reported in the TRX file.
</summary>
<param name="Categories">The categories.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty.Categories">
<summary>The categories.</summary>
</member>
</members>
</doc>
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Testing.Extensions.TrxReport.Abstractions</name>
</assembly>
<members>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability">
<summary>
This capability is used to indicate whether or not the test framework supports trx report generation.
By supporting trx generation, the test adapter should ensure that some required properties are available
for all the nodes.
We expect these properties in the node bag:
- 1 <c>trxreport.classname</c>
- 0..n <c>trxreport.testcategory</c>
And, in case of exception, the following extra properties:
- <c>trxreport.exceptionmessage</c>
- <c>trxreport.exceptionstacktrace</c>.
</summary>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability.IsSupported">
<summary>
Gets a value indicating whether indicates if the test framework supports trx report properties enrichment.
</summary>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability.Enable">
<summary>
Notifies the test framework that the trx report is enabled and trx report properties should be added to the test nodes.
</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty">
<summary>
Represents an exception to report in the TRX file.
</summary>
<param name="Message">The exception message.</param>
<param name="StackTrace">The exception stack trace.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.#ctor(System.String,System.String)">
<summary>
Represents an exception to report in the TRX file.
</summary>
<param name="Message">The exception message.</param>
<param name="StackTrace">The exception stack trace.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.Message">
<summary>The exception message.</summary>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.StackTrace">
<summary>The exception stack trace.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty">
<summary>
A property that represents the fully qualified type name to be reported in the TRX file.
</summary>
<param name="FullyQualifiedTypeName">The fully qualified type name.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty.#ctor(System.String)">
<summary>
A property that represents the fully qualified type name to be reported in the TRX file.
</summary>
<param name="FullyQualifiedTypeName">The fully qualified type name.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty.FullyQualifiedTypeName">
<summary>The fully qualified type name.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage">
<summary>
A property that represents a message to be reported in the TRX file.
</summary>
<param name="Message">The message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage.#ctor(System.String)">
<summary>
A property that represents a message to be reported in the TRX file.
</summary>
<param name="Message">The message.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage.Message">
<summary>The message.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardErrorTrxMessage">
<summary>
A property that represents the standard error message to be reported in the TRX file.
</summary>
<param name="Message">The standard error message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardErrorTrxMessage.#ctor(System.String)">
<summary>
A property that represents the standard error message to be reported in the TRX file.
</summary>
<param name="Message">The standard error message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardOutputTrxMessage">
<summary>
A property that represents the standard output message to be reported in the TRX file.
</summary>
<param name="Message">The standard output message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardOutputTrxMessage.#ctor(System.String)">
<summary>
A property that represents the standard output message to be reported in the TRX file.
</summary>
<param name="Message">The standard output message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.DebugOrTraceTrxMessage">
<summary>
A property that represents a debug or trace message to be reported in the TRX file.
</summary>
<param name="Message">The debug or trace message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.DebugOrTraceTrxMessage.#ctor(System.String)">
<summary>
A property that represents a debug or trace message to be reported in the TRX file.
</summary>
<param name="Message">The debug or trace message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty">
<summary>
A property that represents the messages to be reported in the TRX file.
</summary>
<param name="Messages">The TRX message properties.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty.#ctor(Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage[])">
<summary>
A property that represents the messages to be reported in the TRX file.
</summary>
<param name="Messages">The TRX message properties.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty.Messages">
<summary>The TRX message properties.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty">
<summary>
A property that represents the categories to be reported in the TRX file.
</summary>
<param name="Categories">The categories.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty.#ctor(System.String[])">
<summary>
A property that represents the categories to be reported in the TRX file.
</summary>
<param name="Categories">The categories.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty.Categories">
<summary>The categories.</summary>
</member>
</members>
</doc>