if(str == null){
throw new Exception("exception occurred");
}
I'm excepting to write a unit test case for the above code.
if(str == null){
throw new Exception("exception occurred");
}
I'm excepting to write a unit test case for the above code.