Rev 404 |
Details |
Compare with Previous |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
404 |
jp_milcent |
1 |
package org.tela_botanica.client;
|
|
|
2 |
|
|
|
3 |
import junit.framework.Test;
|
|
|
4 |
import junit.framework.TestSuite;
|
|
|
5 |
|
|
|
6 |
import org.tela_botanica.client.vues.StructureDetailPanneauVueTest;
|
|
|
7 |
|
|
|
8 |
import com.google.gwt.junit.tools.GWTTestSuite;
|
|
|
9 |
|
|
|
10 |
public class CoelTestSuite extends GWTTestSuite {
|
|
|
11 |
public static Test suite() {
|
|
|
12 |
TestSuite suite = new TestSuite("Tests du COEL");
|
|
|
13 |
suite.addTestSuite(CoelTest.class);
|
|
|
14 |
suite.addTestSuite(StructureDetailPanneauVueTest.class);
|
|
|
15 |
return suite;
|
|
|
16 |
}
|
|
|
17 |
}
|