-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed various files for setting up project
- Loading branch information
William Kvaale
committed
Feb 1, 2018
1 parent
d2ef5bd
commit 2931ab2
Showing
5 changed files
with
70 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
tdt4140-gr1802/app.core/src/test/java/tdt4140/gr1802/app/core/TestExample.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package tdt4140.gr1802.app.core; | ||
|
||
import junit.framework.Test; | ||
import junit.framework.TestCase; | ||
import junit.framework.TestSuite; | ||
|
||
public class TestExample extends TestCase { | ||
|
||
public TestExample( String testName) | ||
{ | ||
super( testName ); | ||
} | ||
|
||
public static Test suite() { | ||
return new TestSuite(TestExample.class); | ||
} | ||
|
||
public void testApp() { | ||
assertTrue(true); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 0 additions & 22 deletions
22
tdt4140-gr1802/app.ui/src/main/java/tdt4140/gr1802/app/ui/FxApp.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters