Package org.drools.guvnor.server.contenthandler

Examples of org.drools.guvnor.server.contenthandler.ContentManager


public class ContentManagerTest {

    @Test
    public void testConfig() throws Exception {
        ContentManager mgr = ContentManager.getInstance();
        ContentManager mgr_ = ContentManager.getInstance();
        assertSame(mgr, mgr_);

        assertTrue(mgr.getContentHandlers().size() > 10);
        assertTrue(mgr.getContentHandlers().get("drl") instanceof DRLFileContentHandler);
View Full Code Here

TOP

Related Classes of org.drools.guvnor.server.contenthandler.ContentManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.