1
2
3
4 package net.sourceforge.pmd.util.database;
5
6 import java.io.InputStream;
7
8 import org.junit.Assert;
9 import org.junit.Test;
10
11
12
13
14
15 public class ResourceLoaderTest {
16
17
18
19
20 @Test
21 public void testGetResourceStream() throws Exception {
22 System.out.println("getResourceStream");
23 String path = "";
24 ResourceLoader instance = new ResourceLoader();
25 InputStream expResult = null;
26 InputStream result = instance.getResourceStream(path);
27 Assert.assertNotNull(result);
28
29
30
31
32 }
33 }