Created
August 27, 2015 06:42
-
-
Save patrykpoborca/60bc56f259d9a675e5c8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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