Skip to content

Commit

Permalink
remi
Browse files Browse the repository at this point in the history
  • Loading branch information
Rémi Leveugle authored and Rémi Leveugle committed Feb 23, 2012
1 parent 443622b commit 598dd77
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions ServerPere/tests/tests.cpp
Expand Up @@ -24,12 +24,9 @@ void ServerPereTestsSimples(Test * test)
iTailleVect=papa->DeleteFd(112);
test->assert(iTailleVect==1,"El�ment absent du vector");
iTailleVect=papa->InsertFd(130);
int iFd = papa->GetFd(1);
test->assert(iFd==130,"El�ment ajout� � la fin du vector");
iFd = papa->GetFd(2);
test->assert(iFd==-1,"Indice sup�rieur � la taille du tableau");


test->assert(iTailleVect==2,"Ajoute element a la fin du vector")
iTailleVect = papa->DeleteFd(130);
test->assert(iTailleVect==1,"El�ment supprime du tableau");


}
Expand Down

0 comments on commit 598dd77

Please sign in to comment.