* @param destination an instance of {@link Map}
*/
private void convertFromInputTestData(InputTestData source, Map<String, List<Map<String, Object>>> destination) {
List<TestMethod> testMethods = source.getTestMethod();
for (TestMethod method : testMethods) {
InputData defaultInputData = method.getInputData();
List<Map<String, Object>> testMethodData = convertFromLIstOfTestRecords(method.getTestRecord(), defaultInputData);
LOG.debug("Read record for method {} and the data read is {}", method.getName(),testMethodData);
destination.put(method.getName(), testMethodData);