@Test
public void shouldBeAbleToGetConfirmationMessage() {
final String expectedMessage = "really?";
when(properties.getString(CONFIRMATION_MESSAGE.getKey())).thenReturn(expectedMessage);
UserInteractionStrategy confirmation = config.getUserInteractionStrategy();
assertThat(confirmation, is(notNullValue()));
assertThat(confirmation, is(GUIInteractionStrategy.class));
}