1
0
Fork 0

first requirement: two dimensional map of Mars

This commit is contained in:
Xavier Fontanet 2024-06-20 14:34:16 +02:00
parent 41540dbd53
commit a8c70f42b1
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,6 @@
package cat.hack3.codingtests.marsrover;
public class MarsMap {
public MarsMap(int width, int height) {
}
}

View File

@ -1,4 +1,13 @@
package cat.hack3.codingtests.marsrover;
import org.testng.annotations.Test;
public class MarsRoverTest {
@Test
public void havingTwoDimensionalMapOfMars() {
int width = 10;
int height = 10;
new MarsMap(width, height);
}
}