981982983984985986987988989990991
"when\n" + "Person( field1 == \"foo\" || ( field2 == \"bar\" ) )\n" + "then\n" + "end\n"; m.addRow( new String[]{ "foo", "bar" } ); checkMarshall( expected, m ); }
10271028102910301031103210331034103510361037
"when\n" + "Person( field1 == \"foo\" )\n" + "then\n" + "end\n"; m.addRow( new String[]{ "foo", null } ); checkMarshall( expected, m ); }
10731074107510761077107810791080108110821083
"when\n" + "Person( ( field2 == \"bar\" ) )\n" + "then\n" + "end\n"; m.addRow( new String[]{ null, "bar" } ); checkMarshall( expected, m ); }
11271128112911301131113211331134113511361137
"when\n" + "Person( field1 == \"foo\" || field2== \"bar\" || ( field3 == \"goo\" ) )\n" + "then\n" + "end\n"; m.addRow( new String[]{ "foo", "bar", "goo" } ); checkMarshall( expected, m ); }
11811182118311841185118611871188118911901191
"when\n" + "Person( field1 == \"foo\" )\n" + "then\n" + "end\n"; m.addRow( new String[]{ "foo", null, null } ); checkMarshall( expected, m ); }
12351236123712381239124012411242124312441245
"when\n" + "Person( field2== \"bar\" )\n" + "then\n" + "end\n"; m.addRow( new String[]{ null, "bar", null } ); checkMarshall( expected, m ); }
12891290129112921293129412951296129712981299
"when\n" + "Person( ( field3 == \"goo\" ) )\n" + "then\n" + "end\n"; m.addRow( new String[]{ null, null, "goo" } ); checkMarshall( expected, m ); }
13531354135513561357135813591360136113621363
"when\n" + "Person( field1 == \"foo\" || field2== \"bar\", field3 == \"goo\" || field4 == \"boo\" )\n" + "then\n" + "end\n"; m.addRow( new String[]{ "foo", "bar", "goo", "boo" } ); checkMarshall( expected, m ); }
14171418141914201421142214231424142514261427
"when\n" + "Person( field1 == \"foo\" )\n" + "then\n" + "end\n"; m.addRow( new String[]{ "foo", null, null, null } ); checkMarshall( expected, m ); }
14811482148314841485148614871488148914901491
"when\n" + "Person( field2== \"bar\" )\n" + "then\n" + "end\n"; m.addRow( new String[]{ null, "bar", null, null } ); checkMarshall( expected, m ); }