/**
* Aucune erreur de validation, le fichier est valide.
*/
public void testValidateCasNormal() throws Exception
{
ImportationPuces importationPuces = getImportation("importation_puces-cas_normal.csv");
getImportationPucesService().load(importationPuces);
getImportationPucesService().validate(importationPuces);
assertEquals(5, importationPuces.getLinesByStatus(
ImportationLineStatus.VALIDEE).size());
assertEquals(0, importationPuces.getLinesByStatus(
ImportationLineStatus.EN_ERREUR).size());
assertEquals(0, importationPuces.getLinesExclus().size());
}