// be the context area of our app.
URL webinf = TestUtilities.class.getResource("WEB-INF");
String contextArea = Path.parse(webinf.getPath()).getParent().asAbsoluteString();
// Prepare the mock of OSGI environment
ComponentContextMock componentCtx
= new ComponentContextMock("componentCtx", expectations);
BundleContextMock bundleCtx = new BundleContextMock("bundleCtx", expectations);
componentCtx.expects.getBundleContext()
.returns(bundleCtx).any();
bundleCtx.expects.getProperty(BootConstants.CONTEXT_AREA)