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

https://github.com/pj-mill/dotnet_testing_frameworks

Demonstration of NUnit & Moq
https://github.com/pj-mill/dotnet_testing_frameworks

csharp dotnet moq nunit

Last synced: 3 months ago
JSON representation

Demonstration of NUnit & Moq

Awesome Lists containing this project

README

          

# DotNet_Testing_Frameworks

Demonstration of NUnit & Moq.

---

Developed with Visual Studio 2015 Community

---

### Techs
|Tech|
|----|
|C#|
|NUnit 3.5|
|Moq 4.5|

---

### Projects
|Project To Test|Test Project|Description|
|---------------|------------|-----------|
|Application.NUnit.Domain|Application.NUnit.Domain.Tests|Demonstrates the 3A's, Categorizing & setting up test fixtures, using multiple test fixtures for running multiple tests using different arguments, and handling expected exceptions|
|Application.Moq.Domain|Application.Moq.Domain.Tests|Demonstrates some of the above and mocking components within a service|

---

###Resources
|Title|Author|Website|
|-----|------|-------|
|[Moq4](https://github.com/Moq/moq4/wiki/Quickstart)||GitHub|
|[Entity Framework Testing with a Mocking Framework (EF6 onwards)](https://msdn.microsoft.com/en-us/library/dn314429(v=vs.113).aspx)||MSDN|
|[Test Driven Development](https://dotnetcodr.com/test-driven-development/)|Andras Nemes|dotnetcodr|
|[KickStart your Unit Testing using Moq](http://www.codeproject.com/Articles/796014/KickStart-your-Unit-Testing-using-Moq)|Adarsh Chaurasia|Code Project|