@Test
public void execute_inexistentExecutableName() throws Exception
{
HashMapObjectSource os=new HashMapObjectSource();
ExecutableNotFoundException re=null;
try
{
executor.execute("inexistentExe", os);
}
catch(ExecutableNotFoundException e)
{
re=e;
}
Assert.assertEquals("inexistentExe", re.getExecutableName());
}