Skip to content

Instantly share code, notes, and snippets.

@matdziu
Created October 27, 2016 13:29
Show Gist options
  • Select an option

  • Save matdziu/3b49959cd6f1ac82745ca9e257a2bfef to your computer and use it in GitHub Desktop.

Select an option

Save matdziu/3b49959cd6f1ac82745ca9e257a2bfef to your computer and use it in GitHub Desktop.
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