2 answers
Hi Anna, I think this line
System.assertEquals(null, spy.getHttpRequest().getBody());
should be
Your code is trying to assert if spy.getHttpRequest().getBody() is equal to null. Wouldn't you like to check if request body is not equal to null?.Hope you find this solution usefeul. If it does please mark as Best Answer to help others developers too.Regards.System.assertNotEquals(null, spy.getHttpRequest().getBody());
Hi Anna Suganthi,Make sure that your Expected and Actual Value should be the same, check that spy.getHttpRequest().getBody() will return null if you expect the null.you can get help from this :https://help.salesforce.com/articleView?id=000318949&type=1&mode=1 (https://help.salesforce.com/articleView?id=000318949&type=1&mode=1)https://developer.salesforce.com/forums/?id=906F0000000AhESIA0If you find your Solution then mark this as the best answer.Thank you!Regards,Suraj Tripathi