Rev 484 | Rev 1197 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package org.tela_botanica.del.test.vues.rechercheimages;import org.junit.Before;import org.junit.Test;import org.mockito.Mockito;import org.tela_botanica.del.client.services.rest.ProtocoleService;import org.tela_botanica.del.client.vues.rechercheimages.moteur.MoteurRechercheImagePresenteur;import com.google.gwt.user.client.ui.HasWidgets;public class MoteurRechercheImagePresenteurTest {MoteurRechercheImagePresenteur moteurRecherchePresenteur;MoteurRechercheImagePresenteur.Vue moteurRechercheVue;HasWidgets container;@Beforepublic void setUp() {moteurRechercheVue = Mockito.mock(MoteurRechercheImagePresenteur.Vue.class, Mockito.RETURNS_MOCKS);ProtocoleService protocoleService = Mockito.mock(ProtocoleService.class);moteurRecherchePresenteur = new MoteurRechercheImagePresenteur(moteurRechercheVue, protocoleService);container = Mockito.mock(HasWidgets.class);}@Testpublic void testerMoteurRechercheImage() {// TODO faire un test GWTTestCase}}