@Test
public void unregisterCommandWithKey() {
final long key = System.currentTimeMillis();
final SwitchFullScreenCommand command = this.commandFacade.retrieve(SwitchFullScreenCommand.class, key);
this.commandFacade.unregister(command, key);
assertNotNull(this.commandFacade.exists(SwitchFullScreenCommand.class, key));
}