Leia Arquivo e Recurso no Teste Junit no Stream
@Test
public void testReadAsStream2() throws IOException{
InputStream is = this.getClass().getResourceAsStream("/data01/users.csv");
assertNotNull(is);
}
Stormy Sandpiper