@Ignore // FIX
public void getFactHandleTest() {
StatefulKnowledgeSession ksession = createSession();
ksession.setGlobal("myGlobalObj", new MyObject("myglobalObj"));
MyObject obj1 = new MyObject("obj1");
FactHandle handle = ksession.insert(obj1);
System.out.println("Handle Identity HashCode -> "+handle.toExternalForm());
Assert.assertNotNull(handle);
Assert.assertEquals(true, ((DefaultFactHandle)handle).isDisconnected());
// The session assertMap doesn't find the factHandle for this object