23 lines
577 B
Java
23 lines
577 B
Java
import java.util.Deque;
|
|
import java.util.ArrayDeque;
|
|
|
|
import static org.junit.Assert.assertTrue; // import static : une facilité offerte depuis java5 (pas besoin de mettre le préfixe)
|
|
import static org.junit.Assert.assertFalse; //
|
|
import static org.junit.Assert.assertSame; //
|
|
import static org.junit.Assert.assertNotSame; //
|
|
import static org.junit.Assert.assertEquals;
|
|
import static org.junit.Assert.assertArrayEquals;
|
|
import org.junit.Test;
|
|
|
|
|
|
/**
|
|
* Une classe pour faire des tests sur la classe ShuntingYard avec JUnit
|
|
*/
|
|
public class TestShuntingYard2 {
|
|
|
|
|
|
|
|
|
|
|
|
}
|