for (TestMethod testMethod : inputTestData.getTestMethod()) {
List<TestRecord> originalTestRecords = testMethod.getTestRecord();
for (TestRecord originalTestRecord : originalTestRecords) {
if (originalTestRecord.getId().equals(testRecord.get(RECORD_POSITION))) {
OutputData outputData = new OutputData();
Entry outputEntry = new Entry();
outputEntry.setKey(ACTUAL_RESULT);
outputEntry.setValue(testRecord.get(ACTUAL_RESULT).toString());
outputData.getEntry().add(outputEntry);
originalTestRecord.setOutputData(outputData);
outputDataAdded = true;
break;
}