CS计算机代考程序代写 junit package parser;
package parser; import static org.junit.Assert.*; import org.junit.Test; /** * You can use this to test your Screen implementation. * NOTE: When marking your submission, there can be more tests. * * */ public class ScreenTest { @Test public void testInitialScreenWithNorthAndPenUp() throws OutOfScreenException { Screen s = new Screen( 11, 21, new Pointer( new Position(5, 10), […]
CS计算机代考程序代写 junit package parser; Read More »