Delete TEST2024/TestPolynomeACompleter.java

This commit is contained in:
Luc Dartois 2025-01-08 15:46:36 +01:00
parent b7a82ab536
commit ab226c277a

@ -1,50 +0,0 @@
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 OnCreeUnPolynome(){
}
@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(){
}
}