Subversion Repositories eFlore/Applications.del

Rev

Rev 959 | Rev 1201 | 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 {

        MoteurPictofloraPresenteur moteurRecherchePresenteur;
        MoteurRechercheImagePresenteur.MoteurPictofloraPresenteur moteurRechercheVue;
        HasWidgets container;

        @Before
        public void setUp() {
                moteurRechercheVue = Mockito.mock(MoteurPictofloraPresenteur.Vue.class, Mockito.RETURNS_MOCKS);
                ProtocoleService protocoleService = Mockito.mock(ProtocoleService.class);
                moteurRecherchePresenteur = new MoteurPictofloraPresenteur(moteurRechercheVue, protocoleService);

                container = Mockito.mock(HasWidgets.class);
        }

        @Test
        public void testerMoteurRechercheImage() {
                // TODO faire un test GWTTestCase
        }

}