Package org.auraframework.adapter

Examples of org.auraframework.adapter.ContextAdapter


    }

    public void testTestContext() {
        // can only test the test context
        ContextService contextService = Aura.getContextService();
        ContextAdapter p = AuraImpl.getContextAdapter();
        assertFalse(p.isEstablished());
        contextService.startContext(Mode.DEV, Format.JSON, Authentication.AUTHENTICATED);
        assertTrue(p.isEstablished());
        assertNotNull(p.getCurrentContext());

        contextService.endContext();
        assertFalse(p.isEstablished());
    }
View Full Code Here

TOP

Related Classes of org.auraframework.adapter.ContextAdapter

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.