Skip to content

Instantly share code, notes, and snippets.

@patrykpoborca
Created August 27, 2015 06:42
Show Gist options
  • Save patrykpoborca/60bc56f259d9a675e5c8 to your computer and use it in GitHub Desktop.
Save patrykpoborca/60bc56f259d9a675e5c8 to your computer and use it in GitHub Desktop.
package io.patrykpoborca.cleanarchitecture.mockimpl;
import io.patrykpoborca.cleanarchitecture.network.base.OKHttp;
public class MockOkHTTP extends OKHttp {
@Override
public String rawResponse() {
return "Mocked raw response: ";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment