Skip to content

Instantly share code, notes, and snippets.

@jrichardsz
Created October 13, 2019 21:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jrichardsz/f97473ca2b424826b477e5c9978344d8 to your computer and use it in GitHub Desktop.
Save jrichardsz/f97473ca2b424826b477e5c9978344d8 to your computer and use it in GitHub Desktop.
read file in maven test uni junit

package com.example; import org.apache.commons.io.IOUtils; public class FooTest { @Test public void shouldWork() throws Exception { String xml = IOUtils.toString( this.getClass().getResourceAsStream("abc.xml"), "UTF-8" ); } }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment