Currently displaying basic javafx window with canvas. Also changed the file structure a bit.

At this point the javafx is not tied to the old code in any way #story[377]
This commit is contained in:
Peter
2017-03-15 18:16:43 +13:00
parent 9ca5f5e7fd
commit 550812d8e1
17 changed files with 176 additions and 124 deletions
-15
View File
@@ -1,15 +0,0 @@
package seng302;
import org.junit.Test;
import static org.junit.Assert.assertTrue;
/**
* Unit test for simple App.
*/
public class AppTest {
@Test
public void testApp() {
assertTrue(true);
}
}
+1
View File
@@ -1,6 +1,7 @@
package seng302;
import org.junit.Test;
import seng302.models.Boat;
import static org.junit.Assert.assertEquals;
+3
View File
@@ -1,6 +1,9 @@
package seng302;
import org.junit.Test;
import seng302.models.Boat;
import seng302.models.Event;
import seng302.models.Leg;
import static org.junit.Assert.assertEquals;
@@ -1,6 +1,7 @@
package seng302;
import org.junit.Test;
import seng302.models.FileParser;
import java.io.FileNotFoundException;
+2
View File
@@ -1,6 +1,8 @@
package seng302;
import org.junit.Test;
import seng302.models.Leg;
import seng302.models.Marker;
import static org.junit.Assert.assertEquals;
+2
View File
@@ -1,6 +1,8 @@
package seng302;
import org.junit.Test;
import seng302.models.Boat;
import seng302.models.Race;
import java.lang.reflect.Array;