/** Getting option by not existing key */
 @Test
 public void getOption2() {
   Option option = service.getOption("key2");
   assertNull(option);
 }