50 lines
868 B
Java
50 lines
868 B
Java
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(){
|
|
|
|
}
|
|
} |