Package ar.com.dgarcia.javaspec.api

Examples of ar.com.dgarcia.javaspec.api.TestContext


     */
    private void runWithOwnSubContext(Runnable codeToRun) {
        MappedContext testRunContext = MappedContext.create();
        testRunContext.setParentDefinition(parentContext);

        TestContext previousContext = sharedContext.get();
        sharedContext.set(testRunContext);
        try{
            codeToRun.run();
        }finally{
            sharedContext.set(previousContext);
View Full Code Here

TOP

Related Classes of ar.com.dgarcia.javaspec.api.TestContext

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.