assertTrue( "Assertion should have failed",
fail );
f = new DefaultSimulationFluent();
// @formatter:off
f.newKieSession(releaseId, "org.test.KBase1.KSession1")
.insert( new Person( "yoda", 150 ) ).set( "y" )
.fireAllRules()
// show testing inside of ksession execution
.test( rf.assertThat( "y.age", matcher( "equalTo", "120" ) ) )
.test( rf.assertThat( "y.age, equalTo(120)" ) );