Create base packages and skeleton classes

Gui
Justin 2025-06-12 21:02:35 +02:00
parent 431b017ee9
commit 1f983b68ad
5 changed files with 20 additions and 7 deletions

View File

@ -0,0 +1,5 @@
package de.hs_mannheim.informatik.chess.controller;
public class Controller {
}

View File

@ -0,0 +1,5 @@
package de.hs_mannheim.informatik.chess.gui;
public class Gui {
}

View File

@ -1,10 +1,10 @@
package de.hs_mannheim.informatik.schach.schach;
package de.hs_mannheim.informatik.chess.main;
/**
* Hello world!
*
*/
public class App
public class Main
{
public static void main( String[] args )
{

View File

@ -0,0 +1,5 @@
package de.hs_mannheim.informatik.chess.model;
public class ChessEngine {
}

View File

@ -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.TestCase;
import junit.framework.TestSuite;
import junit.framework.*;
/**
* Unit test for simple App.
@ -23,7 +21,7 @@ public class AppTest
/**
* @return the suite of tests being tested
*/
public static Test suite()
public static TestSuite suite()
{
return new TestSuite( AppTest.class );
}