Created
October 27, 2016 13:29
-
-
Save matdziu/3b49959cd6f1ac82745ca9e257a2bfef 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
| public class BaseDeserializerTest { | |
| protected InputStream getResourceInputStream(String name) { | |
| return this.getClass().getClassLoader().getResourceAsStream(name); | |
| } | |
| protected Reader getResourceReader(String name) { | |
| return new InputStreamReader(getResourceInputStream(name)); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment