47 lines
1.0 KiB
Java
47 lines
1.0 KiB
Java
import static org.junit.Assert.assertTrue; // import static : une facilite offerte depuis java5 (pas besoin de mettre le préfixe)
|
|
import static org.junit.Assert.assertFalse; //
|
|
import static org.junit.Assert.assertEquals; //
|
|
import static org.junit.Assert.assertNull; //
|
|
import static org.junit.Assert.assertNotNull; //
|
|
import org.junit.Test;
|
|
import java.lang.StringBuilder;
|
|
import java.util.EmptyStackException;
|
|
|
|
|
|
|
|
public class TestsACompleterPileBornee{
|
|
|
|
// Le pop renvoie le dernier push
|
|
@Test
|
|
public void PushEgalPop(){
|
|
|
|
}
|
|
|
|
// On ne peut pas pop si la pile est vide
|
|
@Test(expected = EmptyStackException.class)
|
|
public void NonPopSurPileVide(){
|
|
|
|
}
|
|
|
|
|
|
// La valeur de l'index correspond au nombre de push moins le nombre de pop
|
|
@Test
|
|
public void IndexVautNombreDePush(){
|
|
|
|
}
|
|
|
|
// Contient renvoie faux si n n'est pas dans la pile
|
|
@Test
|
|
public void NeContientPasCeQuonAPasMis(){
|
|
|
|
}
|
|
|
|
// Contient renvoie faux si n a ete dans la pile mais ne l'est plus
|
|
@Test
|
|
public void NeContientPLusCeQuonAEnleve(){
|
|
|
|
}
|
|
|
|
|
|
|
|
} |