public void testGetBundleClassPath() {
Properties props = new Properties();
String path1 = ".";
String path2 = "WEB-INF/";
props.setProperty(Constants.BUNDLE_CLASSPATH, path1 + "," + path2);
Bundle bundle = new MockBundle(props);
String[] cp = OsgiHeaderUtils.getBundleClassPath(bundle);
assertEquals(2, cp.length);
assertEquals(path1, cp[0]);
assertEquals(path2, cp[1]);
}