For this example we will test the sum method of a simple calculator.
In this example we will test the application: ApplicationToTest. This one has a class called Calc. This class has a method Sum().
The method Sum() looks like this:
public void Sum(int a, int b)
{
return a + b;
}
The un...