Читать файл и ресурс в тесте JUNIT в потоке

    @Test
    public void testReadAsStream2() throws IOException{
        InputStream is = this.getClass().getResourceAsStream("/data01/users.csv");
        assertNotNull(is);
    }
Stormy Sandpiper