mockCore = mock(InfinitestCore.class);
TestControl mockTestControl = mock(TestControl.class);
when(mockTestControl.shouldRunTests()).thenReturn(true);
presenter = new InfinitestPresenter(new ResultCollector(mockCore), mockCore, mockView, mockTestControl, new FakeInfinitestAnnotator());
}