Unit Testing using Nunit
Posted by
Rks2rk under
C# on 5/11/2013 1:49:23 PM |
Points: 75 | Views : 3550 | Status :
[Member]
Suppose I have a method:
Public int Sum(int a,int b)
{
return a+b;
}
I want to know what is the test case coding n how it is done using Nunit and upon which part of the coding Unit Testing is done ?