* service when we call the getMessage method on the component
*/
@Test
public void componentShouldCallServiceWhenGetMessage() {
final MockContainer container = new MockContainer();
final Component component = container.create(Component.class);
final Service mockedService = container.getInstance(Service.class);
// perform the call
component.getMessage();
// verify that component called the getMessage method on the mock
// see mockito (mockito.googlecode.com) for more info about how mockito