123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <?xml version="1.0"?>
- <doc>
- <assembly>
- <name>Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions</name>
- </assembly>
- <members>
- <member name="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute">
- <summary>
- Test başına dağıtım için dağıtım öğesi (dosya veya dizin) belirtmek üzere kullanılır.
- Test sınıfında veya test metodunda belirtilebilir.
- Birden fazla öğe belirtmek için özniteliğin birden fazla örneğini içerebilir.
- Öğe yolu mutlak veya göreli olabilir; göreli ise RunConfig.RelativePathRoot ile görelidir.
- </summary>
- <example>
- [DeploymentItem("file1.xml")]
- [DeploymentItem("file2.xml", "DataFiles")]
- [DeploymentItem("bin\Debug")]
- </example>
- <remarks>
- Putting this in here so that UWP discovery works. We still do not want users to be using DeploymentItem in the UWP world - Hence making it internal.
- We should separate out DeploymentItem logic in the adapter via a Framework extensiblity point.
- Filed https://github.com/Microsoft/testfx/issues/100 to track this.
- </remarks>
- </member>
- <member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.#ctor(System.String)">
- <summary>
- <see cref="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute"/> sınıfının yeni bir örneğini başlatır.
- </summary>
- <param name="path">Dağıtılacak dosya veya dizin. Yol, derleme çıktı dizinine göredir. Öğe, dağıtılan test bütünleştirilmiş kodlarıyla aynı dizine kopyalanır.</param>
- </member>
- <member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.#ctor(System.String,System.String)">
- <summary>
- <see cref="T:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute"/> sınıfının yeni bir örneğini başlatır
- </summary>
- <param name="path">Dağıtılacak dosya veya dizinin göreli ya da mutlak yolu. Yol, derleme çıktı dizinine göredir. Öğe, dağıtılan test bütünleştirilmiş kodlarıyla aynı dizine kopyalanır.</param>
- <param name="outputDirectory">Öğelerin kopyalanacağı dizinin yolu. Dağıtım dizinine göre mutlak veya göreli olabilir. Tüm dosyalar ve dizinler şuna göre tanımlanır: <paramref name="path"/> bu dizine kopyalanacak.</param>
- </member>
- <member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.Path">
- <summary>
- Kopyalanacak kaynak dosya veya klasörün yolunu alır.
- </summary>
- </member>
- <member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute.OutputDirectory">
- <summary>
- Öğenin kopyalandığı dizinin yolunu alır.
- </summary>
- </member>
- <member name="T:Microsoft.VisualStudio.TestTools.UnitTesting.AppContainer.UITestMethodAttribute">
- <summary>
- Windows mağazası uygulamaları için UI iş parçacığında test kodunu çalıştırır.
- </summary>
- </member>
- <member name="M:Microsoft.VisualStudio.TestTools.UnitTesting.AppContainer.UITestMethodAttribute.Execute(Microsoft.VisualStudio.TestTools.UnitTesting.ITestMethod)">
- <summary>
- UI İş Parçacığında test metodunu çalıştırır.
- </summary>
- <param name="testMethod">
- Test metodu.
- </param>
- <returns>
- Bir <see cref="T:Microsoft.VisualStudio.TestTools.UnitTesting.TestResult"/> örnekler.
- </returns>
- Throws <exception cref="T:System.NotSupportedException"> when run on an async test method.
- </exception>
- </member>
- <member name="T:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext">
- <summary>
- TestContext sınıfı. Bu sınıf tamamen soyut olmalı ve herhangi bir üye
- içermemelidir. Üyeler bağdaştırıcı tarafından uygulanır. Çerçevedeki kullanıcılar
- buna yalnızca iyi tanımlanmış bir arabirim üzerinden erişmelidir.
- </summary>
- </member>
- <member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.Properties">
- <summary>
- Bir testin test özelliklerini alır.
- </summary>
- </member>
- <member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.FullyQualifiedTestClassName">
- <summary>
- O anda yürütülen test metodunu içeren sınıfın tam adını alır
- </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>
- Yürütülmekte olan test metodunun Adını alır
- </summary>
- </member>
- <member name="P:Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.CurrentTestOutcome">
- <summary>
- Geçerli test sonucunu alır.
- </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>
|