Package org.drools.command

Examples of org.drools.command.World


public class ShadowContextTest {

    @Test @Ignore
    public void test1() {
        World world = new WorldImpl();
       
        world.set( "k1", "v1" );
        assertEquals( "v1", world.get( "k1" ) );
/*       
        Context ctx1 = null; //world.createContext( "p1" );
       
        ctx1.set( "k2", "v2" );
               
View Full Code Here


*/
    }
   
    @Test
    public void test2() {
        World world = new WorldImpl();
       
        ShadowWorld shadowWorld = new ShadowWorldImpl( world );
    }
View Full Code Here

TOP

Related Classes of org.drools.command.World

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.