final private Configuration config = mock(Configuration.class);
//TODO - this will not be simple :(
@Test
public void shouldBeAbleToCreate() {
UserInteractionStrategy confirmation = new GUIInteractionStrategy(config, "message");
assertNotNull("could not create " + GUIInteractionStrategy.class.getName(), confirmation);
}