App can now be built using Ant and run from the JAR file.

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.
This commit is contained in:
Woody Folsom
2012-04-02 13:54:55 -04:00
parent 521fac6e08
commit 02c4986c30
10 changed files with 115 additions and 17 deletions

11
test/model/BoardTest.java Normal file
View File

@@ -0,0 +1,11 @@
package model;
import org.junit.Test;
public class BoardTest {
@Test
public void testConstructor() {
new Board();
}
}