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
- Host: GitHub
- URL: https://github.com/pj-mill/dotnet_testing_frameworks
- Owner: pj-mill
- Created: 2016-11-03T10:36:10.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-04T13:51:43.000Z (over 9 years ago)
- Last Synced: 2025-05-21T21:07:30.891Z (about 1 year ago)
- Topics: csharp, dotnet, moq, nunit
- Language: C#
- Homepage:
- Size: 31.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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|