@Test public void etantDonneNouvelleLimiteDemandeEnAttenteAtteinteQuandSetLimiteDemandesAvantAssignationDevraitDemanderAssignationDemandes() { given(conteneurDemandes.getNombreDemandesEnAttente()).willReturn(LIMITE_DEMANDES_5); declencheur.setLimiteDemandesAvantAssignation(LIMITE_DEMANDES_5); verify(assignateur).lancerAssignation(conteneurDemandes, notificateur); }
@Test public void etantDonneNouvelleLimiteDemandeSuperieureNbDemandesEnAttenteQuandSetLimiteDemandesAvantAssignationDevraitNeRienFaire() { given(conteneurDemandes.getNombreDemandesEnAttente()).willReturn(LIMITE_DEMANDES_5); declencheur.setLimiteDemandesAvantAssignation(LIMITE_DEMANDES_7); verify(assignateur, never()) .lancerAssignation(any(ConteneurDemandes.class), any(Notificateur.class)); }