testfx icon indicating copy to clipboard operation
testfx copied to clipboard

MSTest framework and adapter

Results 258 testfx issues
Sort by recently updated
recently updated
newest added

## Description I am trying to ignore _one_ test case by adding `Ignore` keyword for `DataRow` attribute: ```C# [TestClass] public class MathTests { [TestMethod] [DataRow(1, 1, 2)] [DataRow(2, 2, 3),...

Type: Feature
State: Needs Approval

## Description I am porting some code with unit tests from .NET Framework 4.7 to .NET 5.0. Both are using latest MSTest v2 as shown below. ```xml ``` As part...

need-additional-info

We are using DynamicData to specify our test cases. We are creating an [InvalidUpdateException object](https://msazure.visualstudio.com/One/_git/Compute-CPlat-CCO?path=/src/CCO.Contracts/InvalidUpdateException.cs&version=GBmaster&line=16&lineEnd=17&lineStartColumn=1&lineEndColumn=1&lineStyle=plain&_a=contents) by passing custom exception message. However, the exception message being actually passed to the unit...

## Description We're migrating all our test projects from MSTest V1 to MSTest V2. Some of our tested projects depend on native dlls. In the past we could just add...

## Description I'm getting error after upgrading Nuget packages. Error = "Test project Models does not reference any .NET NuGet adapter. Test discovery or execution might not work for this...

## Description We have some active bugs on dynamic data tests. This issue is to track all of them in a single place. ## Tasks - [x] #875 - [x]...

sprint
triaged

### Motivation I have been using `CollectionAssert` for quite some time but when I want to check whether the contents of a `ReadOnlyCollection` match my expectation a cannot use `CollectionAssert`...

Help-Wanted
sprint
Type: Feature
Area: Assertion

## Description This is based on this StackOverflow question: https://stackoverflow.com/q/59624616/21567 When you have a test class with a ClassInitialize-Method and that method fails. Only one of the actual test methods...

## Description We have a test framework base on .NET Framework 4.8 for Windows tests and use Jenkins in our CI. My team updated MsTest to the latest version (it's...

triaged

## Description In MSTest V2 v1.2.0, I'm writing the unit tests for .net framework 4.6 library. The TestInitialize and TestCleanUp works as following: > **TestInitialize** > DataRow(1) > **TestCleanUp** >...

enhancement
help-wanted
sprint