pvlakshm
pvlakshm
## Description User should be able to run tests specifying the test target with desktop msbuild. For example ``` > MSBuild testapp.csproj /t:VSTest ``` This target should first build the...
## Description MSTest.TestAdapter does not get nuget-restored if the target framework is .NETStandard2.0 ## Steps to reproduce 1. Install Visual Studio 15.5.0 Preview 2 2. Create a new project using...
## Description Allow all test lifecycle attributes to be extensible: - TestInitializeAttribute - ClassInitializeAttribute - AssemblyInitializeAttribute - TestCleanupAttribute - ClassCleanupAttribute - AssemblyCleanupAttribute Also allow multiple action attributes on a test...
## Description Control test execution in various ways: 1. constraint on the execution time, memory/CPU usage, of a test 2. constraining the application platforms on which the test can execute,...
## Description Allow a ClassInitialize in a base class of a TestClass so that in addition to initializing static variables in the test class, I can initialize static variables in...
## MSTest V2 backlog Here is our [roadmap](https://github.com/Microsoft/testfx-docs/blob/master/roadmap.md). It calls out the broad themes for our work. The below list of issues breaks that down to the line item level...
Filtering from the CLI using /TestCaseFilter is not supported on extensions to TestPropertyAttribute
Here is an example of an extention to ```TestPropertyAttribute``` ([RFC](https://github.com/Microsoft/testfx-docs/blob/master/RFCs/001-Framework-Extensibility-Description-Attributes.md)): ``` using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using MSTestV2Ex; namespace MSTestV2Ex { [AttributeUsage(AttributeTargets.Method, AllowMultiple = false)] public class SmokeTest : TestPropertyAttribute {...