Our partners are professionals in the making of an exciting and always safe experience for exploration. Our Escort in Paschim Vihar Partners are educated in limits and consent. With our outstanding partners you can explore without any worry.
Loading
Our partners are professionals in the making of an exciting and always safe experience for exploration. Our Escort in Paschim Vihar Partners are educated in limits and consent. With our outstanding partners you can explore without any worry.
namespace NunitTestIn order to do unit testing by using Nunit the first thing you need to create a simple CheckNunit class as shown in the code below.
{
public class Math
{
public int Add(int i, int j)
{
int sum;
sum = i + j;
return sum;
}
}
}
namespace CheckNunitIn NunitTest class the check function is attributed by the Test.it is saying that we are passing 10 and 20 value and we are expecting the result as 30.if the result is 30 then everything is working properly else there is something wrong in the code.
{
[TestFixture]
public class NunitTest
{
[Test]//it is called as attribute
public void check()
{
Math obj = new Math();
int result = obj.Add(10, 20);
Assert.AreEqual(30, result);
}
}
}
Now click on run button and see the respective output. If it displays
green color then everything is working fine and if it displays red color
then there is something wrong in code. The following two diagram will give
you an better idea.
Let inject a small defect, so that we can check how Nunit display the result. Now I change the Addition(+) sign as Multiplication(*) sign so the method fail to add values and Nunit displays Red signal like below diagram.
Visit Authors blog for more .NET and SQL Server interview questions