}
@Test
public void usesDefaultParams() throws Exception
{
LocalMuleClient client = muleContext.getClient();
MuleMessage response = client.send("vm://defaultParams", TEST_MESSAGE, null);
assertEquals(1, response.getPayload());
List<Map<String, String>> result = selectData("select * from PLANET where POSITION=4", getDefaultDataSource());
assertRecords(result, new Record(new Field("NAME", "Mercury"), new Field("POSITION", 4)));
}