Hi
I have this test
[Test]
[TestCase(null, ExpectedResult = JobStatus.DocumentDelivery)]
[TestCase("9999999999999999", ExpectedResult = JobStatus.InComplete)]
public JobStatus SetJobSetIncompleteStatus(string invoiceNumber)
{
var job = new Job
{
JobStatus = JobStatus.DocumentDelivery,
InvoiceNumber = invoiceNumber
};
service.SetIncompleteStatus(job);
return job.JobStatus;
}
when i run this test with the nunit test runner the it passes, as expected, but when i run it with ncrunch this is the result
1 -> Expected: null was: DocumentDelivery
2 -> Expected: null was: InComplete
Does any one had this same kind of issue?