Baca file dan sumber daya dalam tes junit ke dalam streaming

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