Files
DEV/DEV3.4/ControleMachine/test/TestShuntingYard2.java

23 lines
577 B
Java
Raw Normal View History

2025-03-13 12:01:03 +01:00
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 {
}