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
- Host: GitHub
- URL: https://github.com/s0urcedev/utesting-dotnet
- Owner: s0urcedev
- License: mit
- Created: 2022-06-01T15:49:36.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-02T07:55:12.000Z (about 4 years ago)
- Last Synced: 2025-06-17T14:46:20.730Z (about 1 year ago)
- Topics: csharp, dotnet, library, testing, testing-tools, unit-testing
- Language: C#
- Homepage:
- Size: 163 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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