Searched refs:jarEntryIsClassFile (Results 1 – 2 of 2) sorted by relevance
116 assertTrue(getMockGenerator().jarEntryIsClassFile(new JarEntry("something.class"))); in testIsClassFile()117 assertTrue(getMockGenerator().jarEntryIsClassFile(new JarEntry("/Foo/Bar.class"))); in testIsClassFile()118 assertFalse(getMockGenerator().jarEntryIsClassFile(new JarEntry("/Foo/Bar.clas"))); in testIsClassFile()119 assertFalse(getMockGenerator().jarEntryIsClassFile(new JarEntry("/Foo/Bar.class "))); in testIsClassFile()120 assertFalse(getMockGenerator().jarEntryIsClassFile(new JarEntry("/Foo/Bar"))); in testIsClassFile()
108 if (jarEntryIsClassFile(jarEntry)) { in getClassList()118 boolean jarEntryIsClassFile(JarEntry jarEntry) { in jarEntryIsClassFile() method in AndroidFrameworkMockGenerator