public void testAssertWithDSL() throws Exception {
RuleModel m = new RuleModel();
DSLSentence sen = new DSLSentence();
sen.setDefinition( "I CAN HAS DSL" );
m.addRhsItem( sen );
ActionInsertFact ins = new ActionInsertFact( "Shizzle" );
ActionFieldValue val = new ActionFieldValue( "goo",
"42",
"Numeric" );
ins.fieldValues = new ActionFieldValue[1];
ins.fieldValues[0] = val;