Create base packages and skeleton classes
parent
431b017ee9
commit
1f983b68ad
|
|
@ -0,0 +1,5 @@
|
||||||
|
package de.hs_mannheim.informatik.chess.controller;
|
||||||
|
|
||||||
|
public class Controller {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
package de.hs_mannheim.informatik.chess.gui;
|
||||||
|
|
||||||
|
public class Gui {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
package de.hs_mannheim.informatik.schach.schach;
|
package de.hs_mannheim.informatik.chess.main;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Hello world!
|
* Hello world!
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class App
|
public class Main
|
||||||
{
|
{
|
||||||
public static void main( String[] args )
|
public static void main( String[] args )
|
||||||
{
|
{
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
package de.hs_mannheim.informatik.chess.model;
|
||||||
|
|
||||||
|
public class ChessEngine {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -1,8 +1,6 @@
|
||||||
package de.hs_mannheim.informatik.schach.schach;
|
package de.hs_mannheim.informatik.chess.test;
|
||||||
|
|
||||||
import junit.framework.Test;
|
import junit.framework.*;
|
||||||
import junit.framework.TestCase;
|
|
||||||
import junit.framework.TestSuite;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Unit test for simple App.
|
* Unit test for simple App.
|
||||||
|
|
@ -23,7 +21,7 @@ public class AppTest
|
||||||
/**
|
/**
|
||||||
* @return the suite of tests being tested
|
* @return the suite of tests being tested
|
||||||
*/
|
*/
|
||||||
public static Test suite()
|
public static TestSuite suite()
|
||||||
{
|
{
|
||||||
return new TestSuite( AppTest.class );
|
return new TestSuite( AppTest.class );
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue