Am I close? I'm using Extract to pull the string from a field and storing that in Contact1.
[CodedStep(@"Compare expected Contacts")]
public void Infu_CodedStep()
{
var cval = GetExtractedValue(Contact1);
Assert.IsTrue(cval > 50000);
}
But, once I completed adding the code block, the test will not run. All others still do, but the new one just stares at me and doesn't respond in ANY way when I attempt to Run or Run to here.
[CodedStep(@"Compare expected Contacts")]
public void Infu_CodedStep()
{
var cval = GetExtractedValue(Contact1);
Assert.IsTrue(cval > 50000);
}
But, once I completed adding the code block, the test will not run. All others still do, but the new one just stares at me and doesn't respond in ANY way when I attempt to Run or Run to here.