293294295296297298299300301302303
protected void extractTestResult( Matcher matcher ) { TestResult testResult = null; final String okOrNotOk = matcher.group(1); StatusValues status = null; if ( okOrNotOk.trim().equals("ok")) { status = StatusValues.OK; } else // regex mate...
336337338339340341342343344345346
365366367368369370371372373374375
295296297298299300301302303304305
private void extractTestResult( Matcher matcher ) { TestResult testResult = null; final String okOrNotOk = matcher.group(1); StatusValues status = null; if ( okOrNotOk.trim().equals("ok")) { status = StatusValues.OK; } else // regex mate...