Note: this requires adding the res/lib folder to the classpath in order to run in Eclipse (included in this commit). Another commit will follow to remove build artifacts from git.
12 lines
126 B
Java
12 lines
126 B
Java
package model;
|
|
|
|
import org.junit.Test;
|
|
|
|
public class BoardTest {
|
|
|
|
@Test
|
|
public void testConstructor() {
|
|
new Board();
|
|
}
|
|
}
|