An open API service indexing awesome lists of open source software.

https://github.com/aimenux/parameterisedtestsdemo

Comparing the use of parameterized tests across various unit tests frameworks
https://github.com/aimenux/parameterisedtestsdemo

mstest net80 nunit parameterised-tests xunit

Last synced: 3 months ago
JSON representation

Comparing the use of parameterized tests across various unit tests frameworks

Awesome Lists containing this project

README

        

[![.NET](https://github.com/aimenux/ParameterisedTestsDemo/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/aimenux/ParameterisedTestsDemo/actions/workflows/ci.yml)

# ParameterisedTestsDemo
```
Comparing the use of parameterized tests across various unit tests frameworks
```

In this demo, i m comparing the use of parameterized tests across various unit tests frameworks.

| MSTest | NUnit | XUnit |
|:-:|:-:|:-:|
| DataTestMethod | Test | Theory |
| DataRow | TestCase | InlineData |
| DynamicData | TestCaseData, TestCaseSource | MemberData, ClassData, TheoryData |

**`Tools`** : net 8.0, mstest, nunit, xunit