Subversion Repositories eFlore/Applications.del

Compare Revisions

Ignore whitespace Rev 1196 → Rev 1197

/trunk/src/org/tela_botanica/del/test/vues/rechercheimages/MoteurRechercheImagePresenteurTest.java
10,15 → 10,15
 
public class MoteurRechercheImagePresenteurTest {
 
MoteurRechercheImagePresenteur moteurRecherchePresenteur;
MoteurRechercheImagePresenteur.Vue moteurRechercheVue;
MoteurPictofloraPresenteur moteurRecherchePresenteur;
MoteurRechercheImagePresenteur.MoteurPictofloraPresenteur moteurRechercheVue;
HasWidgets container;
 
@Before
public void setUp() {
moteurRechercheVue = Mockito.mock(MoteurRechercheImagePresenteur.Vue.class, Mockito.RETURNS_MOCKS);
moteurRechercheVue = Mockito.mock(MoteurPictofloraPresenteur.Vue.class, Mockito.RETURNS_MOCKS);
ProtocoleService protocoleService = Mockito.mock(ProtocoleService.class);
moteurRecherchePresenteur = new MoteurRechercheImagePresenteur(moteurRechercheVue, protocoleService);
moteurRecherchePresenteur = new MoteurPictofloraPresenteur(moteurRechercheVue, protocoleService);
 
container = Mockito.mock(HasWidgets.class);
}