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

https://github.com/s0urcedev/utesting-dotnet

.NET library for unit testing
https://github.com/s0urcedev/utesting-dotnet

csharp dotnet library testing testing-tools unit-testing

Last synced: 2 months ago
JSON representation

.NET library for unit testing

Awesome Lists containing this project

README

          

# utesting-dotnet

.NET library for unit testing

## Installation:

Download `.dll` files from `DLLs` folder or download `DLLs.zip`

## Importing:

1. Add `.dll` files to your project

2. Add to your document:
```cs
using UtestingTools;
using Utesting;
```

## Using:

`TestOne(TestGroup group, Action output)` — test one test group

`AddTestUnit(Unit tUnit, TestCase[] tCases, bool onlyErrors, bool onlyTime, bool noPrint)` — add test unit to testing it in future

`TestAll(string fileName)` — running testing all added units