Guest User

Untitled

a guest
Jan 22nd, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. public static String httpJsonResponseString;
  2. HTTPResponse res_usage;
  3. if(!Test.isRunningTest()){
  4. res_usage = http_usage.send(req);
  5. }else{
  6. HttpResponse res = new HttpResponse();
  7. res.setHeader('Content-Type', 'application/json');
  8. res.setBody(httpJsonResponseString);
  9. res.setStatusCode(200);
  10. res_usage = res;
  11. }
Add Comment
Please, Sign In to add comment