Salut,

J'essaie de mettre en place un DataPool, cf le tuto d'eclipse :
http://help.eclipse.org/help33/index.../saccessdp.htm

Un petit résumé pour les non initiés :
Je stock dans un fichier .csv les données que je veux tester.
Au lancement de mon JUnit, j'ai un iterator qui me retourne des objets deja instanciés avec les différentes données du fichier.
Pratique non ?

Y a t il des solutions comparables qui ne dépendent pas de TPTP Junit Test inclus dans Eclipse ???

Ayant développé des scripts ant, qui lance mes JUnit,
je n'ai pas envie de modifier le classpath des Tests avec des jars provenant des plugins eclipse :
# Add tptp-models.jar to the Java build path.

* In the left pane, select Java Build Path.
* In the right pane, select the Libraries tab and click Add Variable... The New Variable Classpath Entry dialog appears.
* Select the ECLIPSE_HOME variable and click Extend... The Variable Extension dialog appears. Open the plugins > org.eclipse.tptp.platform.models_Version folder and select tptp-models.jar, where Version is your TPTP version number.
* Click OK to add the library.

# Add org.eclipse.emf.common_Version.jar to the Java build path, where Version is your EMF version.

* In the New Variable Classpath Entry dialog, select the ECLIPSE_HOME variable and click Extend...
* Open the plugins folder and select org.eclipse.emf.common_Version.jar, where Version is your EMF version.
* Click OK to add the library.

# Add org.eclipse.emf.ecore_Version.jar to the Java build path, where Version is your EMF version.

* In the New Variable Classpath Entry dialog, select the ECLIPSE_HOME variable and click Extend...
* Open the plugins folder and select org.eclipse.emf.ecore_Version.jar, where Version is your EMF version.
* Click OK to add the library.

# Add org.eclipse.core.runtime_Version.jar to the Java build path, where Version is your Eclipse platform version.

* In the New Variable Classpath Entry dialog, select the ECLIPSE_HOME variable and click Extend...
* Open the plugins folder and select org.eclipse.core.runtime_Version.jar, where Version is your Eclipse platform version.
* Click OK to add the library.

D'avance merci de votre aide