Subversion Repositories eFlore/Applications.del

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
380 gduche 1
package org.tela_botanica.del.test.vues.rechercheimages;
2
 
3
import static org.junit.Assert.*;
4
 
5
import org.junit.Before;
6
import org.junit.Test;
7
import org.tela_botanica.del.client.vues.rechercheimages.MoteurRechercheImagePresenteur.Vue;
8
import org.tela_botanica.del.client.services.rest.ImageServiceConcret;
9
import org.tela_botanica.del.client.vues.rechercheimages.resultats.ResultatRechercheImagePresenteur;
10
 
11
import static org.mockito.Mockito.mock;
12
 
13
public class ResultatRechercheImagePresenteurTest {
14
 
15
	private ResultatRechercheImagePresenteur resultatPresenteur;
16
	private Vue vueMoteurRecherche;
17
	private org.tela_botanica.del.client.vues.rechercheimages.resultats.ResultatRechercheImagePresenteur.Vue vueResultat;
18
 
19
	@Before
20
	public void setUp() throws Exception {
21
 
22
		vueResultat = mock(org.tela_botanica.del.client.vues.rechercheimages.resultats.ResultatRechercheImagePresenteur.Vue.class);
23
		resultatPresenteur = new ResultatRechercheImagePresenteur(new ImageServiceConcret(), vueResultat);
24
		vueMoteurRecherche = mock(Vue.class);
25
		resultatPresenteur.go(vueMoteurRecherche.getZoneResultats());
26
 
27
	}
28
 
29
	@Test
30
	public void test() {
31
		assertSame("a", "a");
32
	}
33
 
34
}