static ParserProxy _parserProxy;
static ModellingManager _modellingManager;
@BeforeClass
public static void setup() {
BundleContext mockCtx = Skeleton.newMock(new BundleContextMock(), BundleContext.class);
NamespaceHandlerRegistry nhri = new NamespaceHandlerRegistryImpl (mockCtx);
ParserService parserService = new ParserServiceImpl(nhri);
mockCtx.registerService(ParserService.class.getName(), parserService, new Hashtable<String, String>());
_parserProxy = new ParserProxyImpl();
((ParserProxyImpl)_parserProxy).setParserService(parserService);