public void testBundleHeader() throws Exception {
String value = "bla";
Dictionary headers = new Properties();
headers.put("Web-ContextPath", value);
Bundle bundle = new MockBundle(headers);
String path = strategy.getContextPath(bundle);
assertTrue(path.startsWith("/"));
assertEquals("/" + value, path);
}