The below code is my Method logic .
pulic String getData()
{
if (leg.length == 4)
return "ATE";
else if (leg.length == 2) {
return "FTE";
}
if (leg.length == 3) {
if (xr1.KotilaType.equals("CST")) {
return "HTE";
}
return "DTE";
}
return "BTE";
}
As ordered to me, i need to start writing Junit Test Cases for this Method.
As you can see there is only One method and a number of conditions inside this method .
Now my question is , Do we need to write a Seperate Junit TestCase ( A Seperate Method) for each condition ??
Or will it be sufficient to write only One Junit TestCase and cover all the above conditions ??
I am new to junit and not a expert , please guide me what is the approiate way for writing JunitTestCases for the above method ??