477478479480481482483484485486487
"when\n" + "Person( field1 == \"foo\" || == \"goo\" || field2 == \"bar\" )\n" + "then\n" + "end\n"; m.addRow( new String[]{ "foo", "bar" } ); checkMarshall( expected, m ); }
527528529530531532533534535536537
"when\n" + "Person( field1 == \"foo\" || == \"goo\" )\n" + "then\n" + "end\n"; m.addRow( new String[]{ "foo", null } ); checkMarshall( expected, m ); }
577578579580581582583584585586587
"when\n" + "Person( field2 == \"bar\" )\n" + "then\n" + "end\n"; m.addRow( new String[]{ null, "bar" } ); checkMarshall( expected, m ); }
623624625626627628629630631632633
"Person( field2 == \"bar\" )\n" + ")\n" + "then\n" + "end\n"; m.addRow( new String[]{ "foo", "bar" } ); checkMarshall( expected, m ); }
669670671672673674675676677678679
"Person( )\n" + ")\n" + "then\n" + "end\n"; m.addRow( new String[]{ "foo", null } ); checkMarshall( expected, m ); }
715716717718719720721722723724725
"Person( field2 == \"bar\" )\n" + ")\n" + "then\n" + "end\n"; m.addRow( new String[]{ null, "bar" } ); checkMarshall( expected, m ); }
770771772773774775776777778779780
"when\n" + "Person( field1 == \"foo\" || ( field2 == \"bar\" && field3 == \"goo\" ) )\n" + "then\n" + "end\n"; m.addRow( new String[]{ "foo", "bar", "goo" } ); checkMarshall( expected, m ); }
825826827828829830831832833834835
"when\n" + "Person( field1 == \"foo\" )\n" + "then\n" + "end\n"; m.addRow( new String[]{ "foo", null, null } ); checkMarshall( expected, m ); }
880881882883884885886887888889890
"when\n" + "Person( ( field2 == \"bar\" ) )\n" + "then\n" + "end\n"; m.addRow( new String[]{ null, "bar", null } ); checkMarshall( expected, m ); }
935936937938939940941942943944945
"when\n" + "Person( ( field3 == \"goo\" ) )\n" + "then\n" + "end\n"; m.addRow( new String[]{ null, null, "goo" } ); checkMarshall( expected, m ); }