/**
* Performs the actual test on given KieSession.
*/
private void performTest(final KieSession ksession) throws Exception {
final KieBase kbase = ksession.getKieBase();
// fact types
FactType manType = kbase.getFactType(PACKAGE, "Man");
FactType womanType = kbase.getFactType(PACKAGE, "Woman");
FactType parentType = kbase.getFactType(PACKAGE, "Parent");
// ksession.addEventListener(arg0)
// create working memory objects
List<Command<?>> commands = new ArrayList<Command<?>>();