Skip to content
Permalink
cd2cfe73fa
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 28 lines (20 sloc) 470 Bytes
package test;
import model.Board;
public class BoardTest {
public static void movementTest() {
Board b = new Board();
}
public static void printTest() {
Board b = new Board();
b.print();
}
public static void samuelMappingTest() {
Board b = new Board();
for(int i = 1; i <= 32; ++i) {
System.out.println(i + " : " + b.samuelMapping(i));
}
}
public static void main(String[]args) {
samuelMappingTest();
}
}