Allow necessary packages for appveyor to build

This commit is contained in:
Cuyler36 2018-08-13 00:53:04 -04:00
parent 4c02941970
commit de07352e04
143 changed files with 195141 additions and 2 deletions

3
.gitignore vendored
View file

@ -8,5 +8,4 @@ bin/
.vs/
obj/
*.DotSettings
*.user
packages/
*.user

Binary file not shown.

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Content Include="$(MSBuildThisFileDirectory)..\_common\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll">
<Link>Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Visible>False</Visible>
</Content>
<Content Include="$(MSBuildThisFileDirectory)..\_common\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll">
<Link>Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Visible>False</Visible>
</Content>
<Content Include="$(MSBuildThisFileDirectory)..\_common\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll">
<Link>Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Visible>False</Visible>
</Content>
</ItemGroup>
</Project>

View file

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<EnableMSTestV2CopyResources Condition="$(EnableMSTestV2CopyResources) == ''">true</EnableMSTestV2CopyResources>
</PropertyGroup>
<Target Name="GetMSTestV2CultureHierarchy">
<!-- Only traversing 5 levels in the culture hierarchy. This is the maximum lenght for all cultures and should be sufficient to get to a culture name that maps to a resource folder we package.
The root culture name for all cultures is invariant whose name is ''(empty) and the parent for invariant culture is invariant itself.(https://msdn.microsoft.com/en-us/library/system.globalization.cultureinfo.parent(v=vs.110).aspx.)
So the below code should not break build in any case. -->
<ItemGroup>
<CurrentUICultureHierarchy Include="$([System.Globalization.CultureInfo]::CurrentUICulture.Name)" />
<CurrentUICultureHierarchy Include="$([System.Globalization.CultureInfo]::CurrentUICulture.Parent.Name)" Condition="$([System.Globalization.CultureInfo]::CurrentUICulture.Parent.Name) != ''"/>
<CurrentUICultureHierarchy Include="$([System.Globalization.CultureInfo]::CurrentUICulture.Parent.Parent.Name)" Condition="$([System.Globalization.CultureInfo]::CurrentUICulture.Parent.Parent.Name) != ''"/>
<CurrentUICultureHierarchy Include="$([System.Globalization.CultureInfo]::CurrentUICulture.Parent.Parent.Parent.Name)" Condition="$([System.Globalization.CultureInfo]::CurrentUICulture.Parent.Parent.Parent.Name) != ''"/>
<CurrentUICultureHierarchy Include="$([System.Globalization.CultureInfo]::CurrentUICulture.Parent.Parent.Parent.Parent.Name)" Condition="$([System.Globalization.CultureInfo]::CurrentUICulture.Parent.Parent.Parent.Parent.Name) != ''"/>
</ItemGroup>
</Target>
<!-- Copy resources over to $(TargetDir) if this is a localized build. -->
<Target Name="CopyMSTestV2Resources" BeforeTargets="PrepareForBuild" Condition="$(EnableMSTestV2CopyResources) == 'true'" DependsOnTargets="GetMSTestV2CultureHierarchy">
<ItemGroup>
<MSTestV2ResourceFiles Include="$(MSBuildThisFileDirectory)..\_common\%(CurrentUICultureHierarchy.Identity)\*resources.dll">
<CultureString>%(CurrentUICultureHierarchy.Identity)</CultureString>
</MSTestV2ResourceFiles>
<Content Include="@(MSTestV2ResourceFiles)" Condition="@(MSTestV2ResourceFiles) != ''">
<Link>%(MSTestV2ResourceFiles.CultureString)\%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Visible>False</Visible>
</Content>
</ItemGroup>
</Target>
<!-- This is required because an empty resource folder is left even though the files within are cleaned up. -->
<Target Name="CleanupMSTestV2ResourceFolders" AfterTargets="AfterClean" Condition="$(EnableMSTestV2CopyResources) == 'true'" DependsOnTargets="GetMSTestV2CultureHierarchy">
<ItemGroup>
<ResourceDirectories Include="$(TargetDir)%(CurrentUICultureHierarchy.Identity)" />
</ItemGroup>
<!-- RemoveDir does not throw if the folder does not exist. Continue on error - In any case do not fail build if this task fails(Warn and move on).-->
<RemoveDir Directories="@(ResourceDirectories)" ContinueOnError="true"/>
</Target>
</Project>

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Content Include="$(MSBuildThisFileDirectory)..\_common\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll">
<Link>Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Visible>False</Visible>
</Content>
<Content Include="$(MSBuildThisFileDirectory)..\_common\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll">
<Link>Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Visible>False</Visible>
</Content>
<Content Include="$(MSBuildThisFileDirectory)Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll">
<Link>Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Visible>False</Visible>
</Content>
</ItemGroup>
</Project>

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Content Include="$(MSBuildThisFileDirectory)..\_common\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll">
<Link>Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Visible>False</Visible>
</Content>
<Content Include="$(MSBuildThisFileDirectory)..\_common\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll">
<Link>Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Visible>False</Visible>
</Content>
<Content Include="$(MSBuildThisFileDirectory)Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll">
<Link>Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Visible>False</Visible>
</Content>
</ItemGroup>
</Project>

View file

@ -0,0 +1,50 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<EnableMSTestV2CopyResources Condition="$(EnableMSTestV2CopyResources) == ''">true</EnableMSTestV2CopyResources>
</PropertyGroup>
<Target Name="GetMSTestV2CultureHierarchy">
<!-- Only traversing 5 levels in the culture hierarchy. This is the maximum lenght for all cultures and should be sufficient to get to a culture name that maps to a resource folder we package.
The root culture name for all cultures is invariant whose name is ''(empty) and the parent for invariant culture is invariant itself.(https://msdn.microsoft.com/en-us/library/system.globalization.cultureinfo.parent(v=vs.110).aspx.)
So the below code should not break build in any case. -->
<ItemGroup>
<CurrentUICultureHierarchy Include="$([System.Globalization.CultureInfo]::CurrentUICulture.Name)" />
<CurrentUICultureHierarchy Include="$([System.Globalization.CultureInfo]::CurrentUICulture.Parent.Name)"/>
<CurrentUICultureHierarchy Include="$([System.Globalization.CultureInfo]::CurrentUICulture.Parent.Parent.Name)" Condition="$([System.Globalization.CultureInfo]::CurrentUICulture.Parent.Parent.Name) != ''"/>
<CurrentUICultureHierarchy Include="$([System.Globalization.CultureInfo]::CurrentUICulture.Parent.Parent.Parent.Name)" Condition="$([System.Globalization.CultureInfo]::CurrentUICulture.Parent.Parent.Parent.Name) != ''"/>
<CurrentUICultureHierarchy Include="$([System.Globalization.CultureInfo]::CurrentUICulture.Parent.Parent.Parent.Parent.Name)" Condition="$([System.Globalization.CultureInfo]::CurrentUICulture.Parent.Parent.Parent.Parent.Name) != ''"/>
</ItemGroup>
</Target>
<!-- Copy resources over to $(TargetDir) if this is a localized build. -->
<Target Name="CopyMSTestV2Resources" BeforeTargets="PrepareForBuild" Condition="$(EnableMSTestV2CopyResources) == 'true'" DependsOnTargets="GetMSTestV2CultureHierarchy">
<PropertyGroup>
<CurrentUICultureHierarchy>%(CurrentUICultureHierarchy.Identity)</CurrentUICultureHierarchy>
</PropertyGroup>
<ItemGroup>
<MSTestV2Files Include="$(MSBuildThisFileDirectory)..\_common\*.dll" />
</ItemGroup>
<ItemGroup>
<Content Include="@(MSTestV2Files->'%(RootDir)%(Directory)$(CurrentUICultureHierarchy)\%(FileName).resources.dll')"
Condition="Exists('%(RootDir)%(Directory)$(CurrentUICultureHierarchy)\%(FileName).resources.dll')">
<Link>$(CurrentUICultureHierarchy)\%(FileName).resources.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<BaseAssemblyFullPath>%(FullPath)</BaseAssemblyFullPath>
<Visible>False</Visible>
</Content>
</ItemGroup>
</Target>
<!-- This is required because an empty resource folder is left even though the files within are cleaned up. -->
<Target Name="CleanupMSTestV2ResourceFolders" AfterTargets="AfterClean" Condition="$(EnableMSTestV2CopyResources) == 'true'" DependsOnTargets="GetMSTestV2CultureHierarchy">
<ItemGroup>
<ResourceDirectories Include="$(TargetDir)%(CurrentUICultureHierarchy.Identity)" />
</ItemGroup>
<!-- RemoveDir does not throw if the folder does not exist. Continue on error - In any case do not fail build if this task fails(Warn and move on).-->
<RemoveDir Directories="@(ResourceDirectories)" ContinueOnError="true"/>
</Target>
</Project>

View file

@ -0,0 +1,93 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions</name>
</assembly>
<members>
<member name="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute">
<summary>
Used to specify deployment item (file or directory) for per-test deployment.
Can be specified on test class or test method.
Can have multiple instances of the attribute to specify more than one item.
The item path can be absolute or relative, if relative, it is relative to RunConfig.RelativePathRoot.
</summary>
<example>
[DeploymentItem("file1.xml")]
[DeploymentItem("file2.xml", "DataFiles")]
[DeploymentItem("bin\Debug")]
</example>
<remarks>
DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future.
</remarks>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute"/> class.
</summary>
<param name="path">The file or directory to deploy. The path is relative to the build output directory. The item will be copied to the same directory as the deployed test assemblies.</param>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute"/> class
</summary>
<param name="path">The relative or absolute path to the file or directory to deploy. The path is relative to the build output directory. The item will be copied to the same directory as the deployed test assemblies.</param>
<param name="outputDirectory">The path of the directory to which the items are to be copied. It can be either absolute or relative to the deployment directory. All files and directories identified by <paramref name="path"/> will be copied to this directory.</param>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.Path">
<summary>
Gets the path of the source file or folder to be copied.
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.OutputDirectory">
<summary>
Gets the path of the directory to which the item is copied.
</summary>
</member>
<member name="T:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext">
<summary>
TestContext class. This class should be fully abstract and not contain any
members. The adapter will implement the members. Users in the framework should
only access this via a well-defined interface.
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.Properties">
<summary>
Gets test properties for a test.
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.FullyQualifiedTestClassName">
<summary>
Gets Fully-qualified name of the class containing the test method currently being executed
</summary>
<remarks>
This property can be useful in attributes derived from ExpectedExceptionBaseAttribute.
Those attributes have access to the test context, and provide messages that are included
in the test results. Users can benefit from messages that include the fully-qualified
class name in addition to the name of the test method currently being executed.
</remarks>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.TestName">
<summary>
Gets the Name of the test method currently being executed
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.CurrentTestOutcome">
<summary>
Gets the current test outcome.
</summary>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.WriteLine(System.String)">
<summary>
Used to write trace messages while the test is running
</summary>
<param name="message">formatted message string</param>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.WriteLine(System.String,System.Object[])">
<summary>
Used to write trace messages while the test is running
</summary>
<param name="format">format string</param>
<param name="args">the arguments</param>
</member>
</members>
</doc>

View file

@ -0,0 +1,93 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions</name>
</assembly>
<members>
<member name="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute">
<summary>
Používá se pro určení položky nasazení (souboru nebo adresáře) za účelem nasazení podle testu.
Lze zadat na testovací třídě nebo testovací metodě.
Může mít více instancí atributu pro zadání více než jedné položky.
Cesta k položce může být absolutní nebo relativní. Pokud je relativní, je relativní ve vztahu k RunConfig.RelativePathRoot.
</summary>
<example>
[DeploymentItem("file1.xml")]
[DeploymentItem("file2.xml", "DataFiles")]
[DeploymentItem("bin\Debug")]
</example>
<remarks>
DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future.
</remarks>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.#ctor(System.String)">
<summary>
Inicializuje novou instanci třídy <see cref="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute"/>.
</summary>
<param name="path">Soubor nebo adresář, který se má nasadit. Cesta je relativní ve vztahu k adresáři výstupu sestavení. Položka bude zkopírována do adresáře, ve kterém jsou nasazená testovací sestavení.</param>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.#ctor(System.String,System.String)">
<summary>
Inicializuje novou instanci třídy <see cref="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute"/>.
</summary>
<param name="path">Relativní nebo absolutní cesta k souboru nebo adresáři, který se má nasadit. Cesta je relativní ve vztahu k adresáři výstupu sestavení. Položka bude zkopírována do stejného adresáře jako nasazená testovací sestavení.</param>
<param name="outputDirectory">Cesta k adresáři, do kterého se mají položky kopírovat. Může být absolutní nebo relativní ve vztahu k adresáři nasazení. Všechny soubory a adresáře určené cestou <paramref name="path"/> budou zkopírovány do tohoto adresáře.</param>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.Path">
<summary>
Získá cestu ke zdrojovému souboru nebo složce, které se mají kopírovat.
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.OutputDirectory">
<summary>
Získá cestu adresáře, do kterého se položka zkopíruje.
</summary>
</member>
<member name="T:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext">
<summary>
Třída TestContext. Tato třída by měla být zcela abstraktní a neměla by obsahovat žádné
členy. Členy implementuje adaptér. Uživatelé rozhraní by měli
k této funkci přistupovat jenom prostřednictvím dobře definovaného rozhraní.
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.Properties">
<summary>
Získá vlastnosti testu.
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.FullyQualifiedTestClassName">
<summary>
Získá plně kvalifikovaný název třídy obsahující aktuálně prováděnou testovací metodu.
</summary>
<remarks>
This property can be useful in attributes derived from ExpectedExceptionBaseAttribute.
Those attributes have access to the test context, and provide messages that are included
in the test results. Users can benefit from messages that include the fully-qualified
class name in addition to the name of the test method currently being executed.
</remarks>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.TestName">
<summary>
Získá název aktuálně prováděné testovací metody.
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.CurrentTestOutcome">
<summary>
Získá aktuální výsledek testu.
</summary>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.WriteLine(System.String)">
<summary>
Used to write trace messages while the test is running
</summary>
<param name="message">formatted message string</param>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.WriteLine(System.String,System.Object[])">
<summary>
Used to write trace messages while the test is running
</summary>
<param name="format">format string</param>
<param name="args">the arguments</param>
</member>
</members>
</doc>

View file

@ -0,0 +1,93 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions</name>
</assembly>
<members>
<member name="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute">
<summary>
Wird zum Angeben des Bereitstellungselements (Datei oder Verzeichnis) für eine Bereitstellung pro Test verwendet.
Kann für eine Testklasse oder Testmethode angegeben werden.
Kann mehrere Instanzen des Attributs besitzen, um mehrere Elemente anzugeben.
Der Elementpfad kann absolut oder relativ sein. Wenn er relativ ist, dann relativ zu "RunConfig.RelativePathRoot".
</summary>
<example>
[DeploymentItem("file1.xml")]
[DeploymentItem("file2.xml", "DataFiles")]
[DeploymentItem("bin\Debug")]
</example>
<remarks>
DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future.
</remarks>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.#ctor(System.String)">
<summary>
Initialisiert eine neue Instanz der <see cref="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute"/>-Klasse.
</summary>
<param name="path">Die bereitzustellende Datei oder das Verzeichnis. Der Pfad ist relativ zum Buildausgabeverzeichnis. Das Element wird in das gleiche Verzeichnis wie die bereitgestellten Testassemblys kopiert.</param>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.#ctor(System.String,System.String)">
<summary>
Initialisiert eine neue Instanz der <see cref="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute"/>-Klasse.
</summary>
<param name="path">Der relative oder absolute Pfad zur bereitzustellenden Datei oder zum Verzeichnis. Der Pfad ist relativ zum Buildausgabeverzeichnis. Das Element wird in das gleiche Verzeichnis wie die bereitgestellten Testassemblys kopiert.</param>
<param name="outputDirectory">Der Pfad des Verzeichnisses, in das die Elemente kopiert werden sollen. Er kann absolut oder relativ zum Bereitstellungsverzeichnis sein. Alle Dateien und Verzeichnisse, die identifiziert werden durch <paramref name="path"/> werden in dieses Verzeichnis kopiert.</param>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.Path">
<summary>
Ruft den Pfad der Quelldatei oder des -ordners ab, die bzw. der kopiert werden soll.
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.OutputDirectory">
<summary>
Ruft den Pfad des Verzeichnisses ab, in das das Element kopiert werden soll.
</summary>
</member>
<member name="T:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext">
<summary>
Die TestContext-Klasse. Diese Klasse muss vollständig abstrakt sein und keine
Member enthalten. Der Adapter implementiert die Member. Benutzer im Framework sollten
darauf nur über eine klar definierte Schnittstelle zugreifen.
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.Properties">
<summary>
Ruft Testeigenschaften für einen Test ab.
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.FullyQualifiedTestClassName">
<summary>
Ruft den vollqualifizierten Namen der Klasse ab, die die Testmethode enthält, die zurzeit ausgeführt wird.
</summary>
<remarks>
This property can be useful in attributes derived from ExpectedExceptionBaseAttribute.
Those attributes have access to the test context, and provide messages that are included
in the test results. Users can benefit from messages that include the fully-qualified
class name in addition to the name of the test method currently being executed.
</remarks>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.TestName">
<summary>
Ruft den Namen der zurzeit ausgeführten Testmethode ab.
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.CurrentTestOutcome">
<summary>
Ruft das aktuelle Testergebnis ab.
</summary>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.WriteLine(System.String)">
<summary>
Used to write trace messages while the test is running
</summary>
<param name="message">formatted message string</param>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.WriteLine(System.String,System.Object[])">
<summary>
Used to write trace messages while the test is running
</summary>
<param name="format">format string</param>
<param name="args">the arguments</param>
</member>
</members>
</doc>

View file

@ -0,0 +1,93 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions</name>
</assembly>
<members>
<member name="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute">
<summary>
Se usa para especificar el elemento (archivo o directorio) para la implementación por prueba.
Puede especificarse en la clase de prueba o en el método de prueba.
Puede tener varias instancias del atributo para especificar más de un elemento.
La ruta de acceso del elemento puede ser absoluta o relativa. Si es relativa, lo es respecto a RunConfig.RelativePathRoot.
</summary>
<example>
[DeploymentItem("file1.xml")]
[DeploymentItem("file2.xml", "DataFiles")]
[DeploymentItem("bin\Debug")]
</example>
<remarks>
DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future.
</remarks>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.#ctor(System.String)">
<summary>
Inicializa una nueva instancia de la clase <see cref="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute"/>.
</summary>
<param name="path">Archivo o directorio para implementar. La ruta de acceso es relativa al directorio de salida de compilación. El elemento se copiará en el mismo directorio que los ensamblados de prueba implementados.</param>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.#ctor(System.String,System.String)">
<summary>
Inicializa una nueva instancia de la clase <see cref="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute"/>.
</summary>
<param name="path">Ruta de acceso relativa o absoluta al archivo o directorio para implementar. La ruta de acceso es relativa al directorio de salida de compilación. El elemento se copiará en el mismo directorio que los ensamblados de prueba implementados.</param>
<param name="outputDirectory">Ruta de acceso del directorio en el que se van a copiar los elementos. Puede ser absoluta o relativa respecto al directorio de implementación. Todos los archivos y directorios que identifica <paramref name="path"/> se copiarán en este directorio.</param>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.Path">
<summary>
Obtiene la ruta de acceso al archivo o carpeta de origen que se debe copiar.
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.OutputDirectory">
<summary>
Obtiene la ruta de acceso al directorio donde se copia el elemento.
</summary>
</member>
<member name="T:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext">
<summary>
Clase TestContext. Esta clase debe ser totalmente abstracta y no contener ningún
miembro. El adaptador implementará los miembros. Los usuarios del marco solo deben
tener acceso a esta clase a través de una interfaz bien definida.
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.Properties">
<summary>
Obtiene las propiedades de una prueba.
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.FullyQualifiedTestClassName">
<summary>
Obtiene el nombre completo de la clase que contiene el método de prueba que se está ejecutando.
</summary>
<remarks>
This property can be useful in attributes derived from ExpectedExceptionBaseAttribute.
Those attributes have access to the test context, and provide messages that are included
in the test results. Users can benefit from messages that include the fully-qualified
class name in addition to the name of the test method currently being executed.
</remarks>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.TestName">
<summary>
Obtiene el nombre del método de prueba que se está ejecutando.
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.CurrentTestOutcome">
<summary>
Obtiene el resultado de la prueba actual.
</summary>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.WriteLine(System.String)">
<summary>
Used to write trace messages while the test is running
</summary>
<param name="message">formatted message string</param>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.WriteLine(System.String,System.Object[])">
<summary>
Used to write trace messages while the test is running
</summary>
<param name="format">format string</param>
<param name="args">the arguments</param>
</member>
</members>
</doc>

View file

@ -0,0 +1,93 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions</name>
</assembly>
<members>
<member name="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute">
<summary>
Permet de spécifier l'élément de déploiement (fichier ou répertoire) pour un déploiement par test.
Peut être spécifié sur une classe de test ou une méthode de test.
Peut avoir plusieurs instances de l'attribut pour spécifier plusieurs éléments.
Le chemin de l'élément peut être absolu ou relatif. S'il est relatif, il l'est par rapport à RunConfig.RelativePathRoot.
</summary>
<example>
[DeploymentItem("file1.xml")]
[DeploymentItem("file2.xml", "DataFiles")]
[DeploymentItem("bin\Debug")]
</example>
<remarks>
DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future.
</remarks>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.#ctor(System.String)">
<summary>
Initialise une nouvelle instance de la classe <see cref="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute"/>.
</summary>
<param name="path">Fichier ou répertoire à déployer. Le chemin est relatif au répertoire de sortie de build. L'élément est copié dans le même répertoire que les assemblys de tests déployés.</param>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.#ctor(System.String,System.String)">
<summary>
Initialise une nouvelle instance de la classe <see cref="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute"/>
</summary>
<param name="path">Chemin relatif ou absolu du fichier ou du répertoire à déployer. Le chemin est relatif au répertoire de sortie de build. L'élément est copié dans le même répertoire que les assemblys de tests déployés.</param>
<param name="outputDirectory">Chemin du répertoire dans lequel les éléments doivent être copiés. Il peut être absolu ou relatif au répertoire de déploiement. Tous les fichiers et répertoires identifiés par <paramref name="path"/> vont être copiés dans ce répertoire.</param>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.Path">
<summary>
Obtient le chemin du fichier ou dossier source à copier.
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.OutputDirectory">
<summary>
Obtient le chemin du répertoire dans lequel l'élément est copié.
</summary>
</member>
<member name="T:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext">
<summary>
Classe TestContext. Cette classe doit être complètement abstraite, et ne doit contenir aucun
membre. L'adaptateur va implémenter les membres. Les utilisateurs du framework ne doivent
y accéder que via une interface bien définie.
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.Properties">
<summary>
Obtient les propriétés de test d'un test.
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.FullyQualifiedTestClassName">
<summary>
Obtient le nom complet de la classe contenant la méthode de test en cours d'exécution
</summary>
<remarks>
This property can be useful in attributes derived from ExpectedExceptionBaseAttribute.
Those attributes have access to the test context, and provide messages that are included
in the test results. Users can benefit from messages that include the fully-qualified
class name in addition to the name of the test method currently being executed.
</remarks>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.TestName">
<summary>
Obtient le nom de la méthode de test en cours d'exécution
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.CurrentTestOutcome">
<summary>
Obtient le résultat de test actuel.
</summary>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.WriteLine(System.String)">
<summary>
Used to write trace messages while the test is running
</summary>
<param name="message">formatted message string</param>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.WriteLine(System.String,System.Object[])">
<summary>
Used to write trace messages while the test is running
</summary>
<param name="format">format string</param>
<param name="args">the arguments</param>
</member>
</members>
</doc>

View file

@ -0,0 +1,93 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions</name>
</assembly>
<members>
<member name="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute">
<summary>
Usato per specificare l'elemento di distribuzione (file o directory) per la distribuzione per singolo test.
Può essere specificato in classi o metodi di test.
Può contenere più istanze dell'attributo per specificare più di un elemento.
Il percorso dell'elemento può essere assoluto o relativo; se è relativo, è relativo rispetto a RunConfig.RelativePathRoot.
</summary>
<example>
[DeploymentItem("file1.xml")]
[DeploymentItem("file2.xml", "DataFiles")]
[DeploymentItem("bin\Debug")]
</example>
<remarks>
DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future.
</remarks>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.#ctor(System.String)">
<summary>
Inizializza una nuova istanza della classe <see cref="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute"/>.
</summary>
<param name="path">File o directory per la distribuzione. Il percorso è relativo alla directory di output della compilazione. L'elemento verrà copiato nella stessa directory degli assembly di test distribuiti.</param>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.#ctor(System.String,System.String)">
<summary>
Inizializza una nuova istanza della classe <see cref="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute"/>
</summary>
<param name="path">Percorso relativo o assoluto del file o della directory per la distribuzione. Il percorso è relativo alla directory di output della compilazione. L'elemento verrà copiato nella stessa directory degli assembly di test distribuiti.</param>
<param name="outputDirectory">Percorso della directory in cui vengono copiati gli elementi. Può essere assoluto o relativo rispetto alla directory di distribuzione. Tutte le directory e tutti i file identificati da <paramref name="path"/> verranno copiati in questa directory.</param>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.Path">
<summary>
Ottiene il percorso della cartella o del file di origine da copiare.
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.OutputDirectory">
<summary>
Ottiene il percorso della directory in cui viene copiato l'elemento.
</summary>
</member>
<member name="T:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext">
<summary>
Classe TestContext. Questa classe deve essere completamente astratta e non deve
contenere membri. I membri verranno implementati dall'adattatore. Gli utenti del framework devono
accedere a questa classe solo tramite un'interfaccia correttamente definita.
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.Properties">
<summary>
Ottiene le proprietà di un test.
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.FullyQualifiedTestClassName">
<summary>
Ottiene il nome completo della classe contenente il metodo di test attualmente in esecuzione
</summary>
<remarks>
This property can be useful in attributes derived from ExpectedExceptionBaseAttribute.
Those attributes have access to the test context, and provide messages that are included
in the test results. Users can benefit from messages that include the fully-qualified
class name in addition to the name of the test method currently being executed.
</remarks>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.TestName">
<summary>
Ottiene il nome del metodo di test attualmente in esecuzione
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.CurrentTestOutcome">
<summary>
Ottiene il risultato del test corrente.
</summary>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.WriteLine(System.String)">
<summary>
Used to write trace messages while the test is running
</summary>
<param name="message">formatted message string</param>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.WriteLine(System.String,System.Object[])">
<summary>
Used to write trace messages while the test is running
</summary>
<param name="format">format string</param>
<param name="args">the arguments</param>
</member>
</members>
</doc>

View file

@ -0,0 +1,93 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions</name>
</assembly>
<members>
<member name="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute">
<summary>
テスト配置ごとに配置項目 (ファイルまたはディレクトリ) を指定するために使用されます。
テスト クラスまたはテスト メソッドで指定できます。
属性に複数のインスタンスを指定して、2 つ以上の項目を指定することができます。
項目のパスには絶対パスまたは相対パスを指定できます。相対パスの場合は、RunConfig.RelativePathRoot からの相対パスです。
</summary>
<example>
[DeploymentItem("file1.xml")]
[DeploymentItem("file2.xml", "DataFiles")]
[DeploymentItem("bin\Debug")]
</example>
<remarks>
DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future.
</remarks>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.#ctor(System.String)">
<summary>
<see cref="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute"/> クラスの新しいインスタンスを初期化します。
</summary>
<param name="path">配置するファイルまたはディレクトリ。パスはビルドの出力ディレクトリの相対パスです。項目は配置されたテスト アセンブリと同じディレクトリにコピーされます。</param>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.#ctor(System.String,System.String)">
<summary>
<see cref="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute"/> クラスの新しいインスタンスを初期化する
</summary>
<param name="path">配置するファイルまたはディレクトリへの相対パスまたは絶対パス。パスはビルドの出力ディレクトリの相対パスです。項目は配置されたテスト アセンブリと同じディレクトリにコピーされます。</param>
<param name="outputDirectory">アイテムのコピー先のディレクトリのパス。配置ディレクトリへの絶対パスまたは相対パスのいずれかを指定できます。次で識別されるすべてのファイルとディレクトリは <paramref name="path"/> このディレクトリにコピーされます。</param>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.Path">
<summary>
コピーするソース ファイルまたはフォルダーのパスを取得します。
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.OutputDirectory">
<summary>
項目のコピー先のディレクトリのパスを取得します。
</summary>
</member>
<member name="T:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext">
<summary>
TestContext クラス。このクラスは完全に抽象的でなければならず、かつメンバー
を含んでいてはなりません。アダプターはメンバーを実装します。フレームワーク内のユーザーは
正しく定義されたインターフェイスを介してのみこのクラスにアクセスする必要があります。
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.Properties">
<summary>
テストのテスト プロパティを取得します。
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.FullyQualifiedTestClassName">
<summary>
現在実行中のテスト メソッドを含むクラスの完全修飾名を取得する
</summary>
<remarks>
This property can be useful in attributes derived from ExpectedExceptionBaseAttribute.
Those attributes have access to the test context, and provide messages that are included
in the test results. Users can benefit from messages that include the fully-qualified
class name in addition to the name of the test method currently being executed.
</remarks>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.TestName">
<summary>
現在実行中のテスト メソッドの名前を取得する
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.CurrentTestOutcome">
<summary>
現在のテスト成果を取得します。
</summary>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.WriteLine(System.String)">
<summary>
Used to write trace messages while the test is running
</summary>
<param name="message">formatted message string</param>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.WriteLine(System.String,System.Object[])">
<summary>
Used to write trace messages while the test is running
</summary>
<param name="format">format string</param>
<param name="args">the arguments</param>
</member>
</members>
</doc>

View file

@ -0,0 +1,93 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions</name>
</assembly>
<members>
<member name="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute">
<summary>
테스트 배포별 배포 항목(파일 또는 디렉터리)을 지정하는 데 사용됩니다.
테스트 클래스 또는 테스트 메서드에서 지정할 수 있습니다.
둘 이상의 항목을 지정하기 위한 여러 특성 인스턴스를 가질 수 있습니다.
항목 경로는 절대 또는 상대 경로일 수 있으며, 상대 경로인 경우 RunConfig.RelativePathRoot가 기준입니다.
</summary>
<example>
[DeploymentItem("file1.xml")]
[DeploymentItem("file2.xml", "DataFiles")]
[DeploymentItem("bin\Debug")]
</example>
<remarks>
DeploymentItemAttribute is currently not supported in .Net Core. This is just a placehodler for support in the future.
</remarks>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.#ctor(System.String)">
<summary>
<see cref="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute"/> 클래스의 새 인스턴스를 초기화합니다.
</summary>
<param name="path">배포할 파일 또는 디렉터리. 경로는 빌드 출력 디렉터리에 대해 상대적입니다. 배포된 테스트 어셈블리와 동일한 디렉터리에 항목이 복사됩니다.</param>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.#ctor(System.String,System.String)">
<summary>
<see cref="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute"/> 클래스의 새 인스턴스를 초기화합니다.
</summary>
<param name="path">배포할 파일 또는 디렉터리에 대한 상대 또는 절대 경로. 경로는 빌드 출력 디렉터리에 대해 상대적입니다. 배포된 테스트 어셈블리와 동일한 디렉터리에 항목이 복사됩니다.</param>
<param name="outputDirectory">항목을 복사할 디렉터리의 경로. 배포 디렉터리에 대한 절대 경로 또는 상대 경로일 수 있습니다.<paramref name="path"/>에 의해 식별되는 모든 파일 및 디렉터리는 이 디렉터리에 복사됩니다.</param>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.Path">
<summary>
복사할 소스 파일 또는 폴더의 경로를 가져옵니다.
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.OutputDirectory">
<summary>
항목을 복사할 디렉터리의 경로를 가져옵니다.
</summary>
</member>
<member name="T:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext">
<summary>
TestContext 클래스. 이 클래스는 완전히 추상 클래스여야 하며 멤버를 포함할
수 없습니다. 어댑터는 멤버를 구현합니다. 프레임워크의 사용자는
잘 정의된 인터페이스를 통해서만 여기에 액세스할 수 있습니다.
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.Properties">
<summary>
테스트에 대한 테스트 속성을 가져옵니다.
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.FullyQualifiedTestClassName">
<summary>
현재 실행 중인 테스트 메서드를 포함하는 클래스의 정규화된 이름을 가져옵니다
</summary>
<remarks>
This property can be useful in attributes derived from ExpectedExceptionBaseAttribute.
Those attributes have access to the test context, and provide messages that are included
in the test results. Users can benefit from messages that include the fully-qualified
class name in addition to the name of the test method currently being executed.
</remarks>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.TestName">
<summary>
현재 실행 중인 테스트 메서드의 이름을 가져옵니다.
</summary>
</member>
<member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.CurrentTestOutcome">
<summary>
현재 테스트 결과를 가져옵니다.
</summary>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.WriteLine(System.String)">
<summary>
Used to write trace messages while the test is running
</summary>
<param name="message">formatted message string</param>
</member>
<member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.WriteLine(System.String,System.Object[])">
<summary>
Used to write trace messages while the test is running
</summary>
<param name="format">format string</param>
<param name="args">the arguments</param>
</member>
</members>
</doc>

Some files were not shown because too many files have changed in this diff Show more