Neue Struktur für den Block. Testklassen für alle bisher vorhandenen Klassen

pull/19/head
Philipp Kotte 2023-10-10 21:22:33 +02:00
parent 9a992ecd99
commit b14ff24156
14 changed files with 102 additions and 3 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@ -4,7 +4,7 @@ This is the "Block" file from Author: Philipp Kotte
written on: 05 / 10 / 2023 at: 23:43
============================================================
*/
package Domain;
package Domain.Block;
public class Block {

View File

@ -4,7 +4,7 @@ This is the "Blockeintrag" file from Author: Philipp Kotte
written on: 05 / 10 / 2023 at: 23:44
============================================================
*/
package Domain;
package Domain.Block;
public class Blockeintrag {
public int punkte;

View File

@ -4,7 +4,7 @@ This is the "Blockzeile" file from Author: Philipp Kotte
written on: 05 / 10 / 2023 at: 23:44
============================================================
*/
package Domain;
package Domain.Block;
public class Blockzeile {
private int rundenNummer;

BIN
Test/.DS_Store vendored 100644

Binary file not shown.

View File

@ -0,0 +1,11 @@
/*
============================================================
This is the "BlockTest" file from Author: Philipp Kotte
written on: 10 / 10 / 2023 at: 21:17
============================================================
*/
package Test.Domain.Block;
public class BlockTest {
}

View File

@ -0,0 +1,11 @@
/*
============================================================
This is the "BlockeintragTest" file from Author: Philipp Kotte
written on: 10 / 10 / 2023 at: 21:17
============================================================
*/
package Test.Domain.Block;
public class BlockeintragTest {
}

View File

@ -0,0 +1,11 @@
/*
============================================================
This is the "BlockzeileTest" file from Author: Philipp Kotte
written on: 10 / 10 / 2023 at: 21:17
============================================================
*/
package Test.Domain.Block;
public class BlockzeileTest {
}

View File

@ -0,0 +1,11 @@
/*
============================================================
This is the "MagierkarteTest" file from Author: Philipp Kotte
written on: 10 / 10 / 2023 at: 21:18
============================================================
*/
package Test.Domain.Karten;
public class MagierkarteTest {
}

View File

@ -0,0 +1,11 @@
/*
============================================================
This is the "NarrenkarteTest" file from Author: Philipp Kotte
written on: 10 / 10 / 2023 at: 21:18
============================================================
*/
package Test.Domain.Karten;
public class NarrenkarteTest {
}

View File

@ -0,0 +1,11 @@
/*
============================================================
This is the "ZahlenkarteTest" file from Author: Philipp Kotte
written on: 10 / 10 / 2023 at: 21:18
============================================================
*/
package Test.Domain.Karten;
public class ZahlenkarteTest {
}

View File

@ -0,0 +1,11 @@
/*
============================================================
This is the "SpielTest" file from Author: Philipp Kotte
written on: 10 / 10 / 2023 at: 21:19
============================================================
*/
package Test.Facade;
public class SpielTest {
}

View File

@ -0,0 +1,11 @@
/*
============================================================
This is the "PersistenzTest" file from Author: Philipp Kotte
written on: 10 / 10 / 2023 at: 21:21
============================================================
*/
package Test.UI;
public class PersistenzTest {
}

View File

@ -0,0 +1,11 @@
/*
============================================================
This is the "SpielCLITest" file from Author: Philipp Kotte
written on: 10 / 10 / 2023 at: 21:21
============================================================
*/
package Test.UI;
public class SpielCLITest {
}