Upload files to "TestsUnitaires"

This commit is contained in:
2025-06-12 12:05:26 +02:00
parent 10c143ee3a
commit eebd8a0c81
4 changed files with 225 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
import static org.junit.Assert.assertTrue; // import static : une facilite offerte depuis java5 (pas besoin de mettre le prsfixe)
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 TestPolynomeACompleter{
@Test
public void OnCreeUnPolynomeSimple(){
}
@Test()
public void OnCreeUnPolynomeAPartirDeNull(){
}
@Test
public void DegreEstCorrect(){
}
@Test
public OnAfficheLePolynomeNul(){
}
//attention le polynome nul n'est pas null
@Test
public void DegrePolynomeNul(){
}
@Test
public void AddEstCommutatif(){
}
@Test
public void EvaluerLaSommeEstEgalASommerLesEvaluations(){
}
}