public void testInstallCommand() throws Exception {
Shell shell = getOsgiService(Shell.class);
try {
shell.execute("log/display");
fail("command should not exist");
} catch (CommandLineExecutionFailed e) {
assertNotNull(e.getCause());
assertTrue(e.getCause() instanceof NoSuchCommandException);
}