in src/main/java/org/apache/sling/commons/testing/integration/HttpTestBase.java [544:555]
public void assertJavascript(String expectedOutput, String jsonData, String code, String testInfo) throws IOException {
final String result = javascriptEngine.execute(code, jsonData);
if(!result.equals(expectedOutput)) {
fail(
"Expected '" + expectedOutput
+ "' but got '" + result
+ "' for script='" + code + "'"
+ "' and data='" + jsonData + "'"
+ (testInfo==null ? "" : ", test info=" + testInfo)
);
}
}