Added basic XUnit project structure, sample code and information in the readme

This commit is contained in:
Sergio Sisternes
2017-06-22 22:41:42 +02:00
parent 805cc31a9d
commit 9548f57c13
3 changed files with 60 additions and 0 deletions

View File

@@ -27,3 +27,15 @@ npm install autorest
cd ${REPO_DIR}/csharp/src
${GEN_DIR}/openapi/csharp.sh generated csharp.settings
```
# Testing
The project uses [XUnit](https://xunit.github.io) as unit testing framework.
To run the tests you need to:
```bash
cd tests
dotnet restore
dotnet xunit
```