271 |
aurelien |
1 |
package org.tela_botanica.del.test;
|
|
|
2 |
|
|
|
3 |
import org.junit.runner.RunWith;
|
|
|
4 |
import org.junit.runners.Suite;
|
|
|
5 |
import org.junit.runners.Suite.SuiteClasses;
|
517 |
jpm |
6 |
import org.tela_botanica.del.test.composants.pagination.PaginationPresenteurTest;
|
648 |
benjamin |
7 |
import org.tela_botanica.del.test.composants.votes.BarreRepartitionVotePresenteurTest;
|
273 |
aurelien |
8 |
import org.tela_botanica.del.test.modeles.MoyenneVoteTest;
|
271 |
aurelien |
9 |
import org.tela_botanica.del.test.modeles.PropositionDeterminationTest;
|
|
|
10 |
import org.tela_botanica.del.test.services.CalculVoteDeterminationServiceTest;
|
1201 |
gduche |
11 |
import org.tela_botanica.del.test.vues.identiplante.MoteurIdentiplantePresenteurTest;
|
|
|
12 |
import org.tela_botanica.del.test.vues.identiplante.ResultatIdentiplanteTest;
|
271 |
aurelien |
13 |
|
|
|
14 |
@RunWith(Suite.class)
|
517 |
jpm |
15 |
@SuiteClasses({
|
1201 |
gduche |
16 |
MoteurIdentiplantePresenteurTest.class,
|
517 |
jpm |
17 |
PaginationPresenteurTest.class,
|
|
|
18 |
MoyenneVoteTest.class,
|
|
|
19 |
PropositionDeterminationTest.class,
|
|
|
20 |
CalculVoteDeterminationServiceTest.class,
|
|
|
21 |
BarreRepartitionVotePresenteurTest.class,
|
1201 |
gduche |
22 |
ResultatIdentiplanteTest.class
|
517 |
jpm |
23 |
})
|
271 |
aurelien |
24 |
public class DelTestSuite {
|
|
|
25 |
|
|
|
26 |
}
|