QQQ-7 Adding an outputMessage to the mock function, to work for the "greet" process

This commit is contained in:
2022-06-24 08:45:26 -05:00
parent b809a43b6c
commit b11ae046de

View File

@ -41,5 +41,10 @@ public class MockFunctionBody implements FunctionBody
runFunctionResult.setValues(runFunctionRequest.getValues()); runFunctionResult.setValues(runFunctionRequest.getValues());
runFunctionResult.addValue("mockValue", "You so silly"); runFunctionResult.addValue("mockValue", "You so silly");
/////////////////////////////////
// mock the "greet" process... //
/////////////////////////////////
runFunctionResult.addValue("outputMessage", runFunctionRequest.getValueString("greetingPrefix") + " X " + runFunctionRequest.getValueString("greetingSuffix") );
} }
} }