eissaeva
4 years agoContributor
Which jar files were added to resolve this?
Hi community,
I run into the same error while using Diff class in groovy ReadyAPI version 3.8.0
def actualResponse = testRunner.runTestStepByName("postQueryWithSFGraphIdAndBlankConstraint").getResponse().getContentAsString()
def expResponse = context.getTestCase().getPropertyValue("gp")
JSONObject parseJsonAct = (JSONObject) new JsonSlurper().parseText(actualResponse);
JSONObject parseJsonExp = (JSONObject) new JsonSlurper().parseText(expResponse);
// Create an object with differences between documents
Diff myDiff = new Diff(parseJsonAct, parseJsonExp)
DetailedDiff diff = new DetailedDiff(myDiff)
I researched and found this post. Just not able to reply and ask which jar files were missing?
My error attached
Ekaterina