Subversion Repositories eFlore/Applications.del

Rev

Rev 1201 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1201 gduche 1
package org.tela_botanica.del.test.vues.identiplante;
470 aurelien 2
 
3
import org.junit.Before;
4
import org.junit.Test;
5
import org.mockito.Mockito;
1201 gduche 6
import org.tela_botanica.del.client.services.rest.ObservationService;
7
import org.tela_botanica.del.client.vues.identiplante.moteur.MoteurIdentiplantePresenteur;
470 aurelien 8
 
9
import com.google.gwt.user.client.ui.HasWidgets;
10
 
1201 gduche 11
public class MoteurIdentiplantePresenteurTest {
959 benjamin 12
 
1201 gduche 13
	MoteurIdentiplantePresenteur moteurRecherchePresenteur;
14
	MoteurIdentiplantePresenteur.Vue moteurRechercheVue;
470 aurelien 15
	HasWidgets container;
959 benjamin 16
 
470 aurelien 17
	@Before
18
	public void setUp() {
1201 gduche 19
		moteurRechercheVue = Mockito.mock(MoteurIdentiplantePresenteur.Vue.class, Mockito.RETURNS_MOCKS);
20
		ObservationService obsService = Mockito.mock(ObservationService.class);
21
		moteurRecherchePresenteur = new MoteurIdentiplantePresenteur(obsService, moteurRechercheVue);
959 benjamin 22
 
470 aurelien 23
		container = Mockito.mock(HasWidgets.class);
24
	}
959 benjamin 25
 
26
	@Test
470 aurelien 27
	public void testerMoteurRechercheImage() {
959 benjamin 28
		// TODO faire un test GWTTestCase
470 aurelien 29
	}
959 benjamin 30
 
470 aurelien 31
}