public void ValidationSoftlogDTOThrowExceptionTest() { // yl - initialisation metier. var lMetier = new SoftlogMetier(); // yl - On lance la methode "ValidatedDTO" avec un paramettre invalide. => Une exception de type SoftlogException doit etre lever lMetier.ValidatedDTO(new CritereSoftlogDTO()); }
public void ValidationSoftlogCritereDTOThrowExceptionTest() { try { // yl - initialisation metier. var lMetier = new SoftlogMetier(); // yl - On lance la methode "ValidatedCritere" avec un paramettre invalide. lMetier.ValidatedCritere(new SoftlogDTO()); } catch (Exception ex) { // yl - une exception est lever. le test est réussi. return; } // yl - si aucune exception lever c'est un FAIL. Assert.Fail("Aucune exception lever"); }