()
| 22 | private final static int CLASSES_IN_CALC_JAR = 9; |
| 23 | |
| 24 | @Test |
| 25 | public void testJar() { |
| 26 | try { |
| 27 | Path file = getClasspathFile("inherit.jar"); |
| 28 | JavaResource resource = new JarResource(file); |
| 29 | assertEquals(CLASSES_IN_INHERIT_JAR, resource.getClasses().size()); |
| 30 | } catch(IOException ex) { |
| 31 | fail(ex); |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | @Test |
| 36 | public void testJarResourcesDoNotContainClasses() { |
nothing calls this directly
no test coverage detected