diff --git a/.DS_Store b/.DS_Store index 53d7bb8..48d84d1 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/Domain/Block.java b/Domain/Block/Block.java similarity index 91% rename from Domain/Block.java rename to Domain/Block/Block.java index 2a87d9f..9b3a1a2 100644 --- a/Domain/Block.java +++ b/Domain/Block/Block.java @@ -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 { diff --git a/Domain/Blockeintrag.java b/Domain/Block/Blockeintrag.java similarity index 97% rename from Domain/Blockeintrag.java rename to Domain/Block/Blockeintrag.java index 17ada9a..e8eb99c 100644 --- a/Domain/Blockeintrag.java +++ b/Domain/Block/Blockeintrag.java @@ -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; diff --git a/Domain/Blockzeile.java b/Domain/Block/Blockzeile.java similarity index 97% rename from Domain/Blockzeile.java rename to Domain/Block/Blockzeile.java index fddeaae..fd3ab31 100644 --- a/Domain/Blockzeile.java +++ b/Domain/Block/Blockzeile.java @@ -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; diff --git a/Test/.DS_Store b/Test/.DS_Store new file mode 100644 index 0000000..7fe7be7 Binary files /dev/null and b/Test/.DS_Store differ diff --git a/Test/Domain/Block/BlockTest.java b/Test/Domain/Block/BlockTest.java new file mode 100644 index 0000000..4956d1f --- /dev/null +++ b/Test/Domain/Block/BlockTest.java @@ -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 { + +} diff --git a/Test/Domain/Block/BlockeintragTest.java b/Test/Domain/Block/BlockeintragTest.java new file mode 100644 index 0000000..128d0a2 --- /dev/null +++ b/Test/Domain/Block/BlockeintragTest.java @@ -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 { + +} diff --git a/Test/Domain/Block/BlockzeileTest.java b/Test/Domain/Block/BlockzeileTest.java new file mode 100644 index 0000000..1ff7487 --- /dev/null +++ b/Test/Domain/Block/BlockzeileTest.java @@ -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 { + +} diff --git a/Test/Domain/Karten/MagierkarteTest.java b/Test/Domain/Karten/MagierkarteTest.java new file mode 100644 index 0000000..53003d6 --- /dev/null +++ b/Test/Domain/Karten/MagierkarteTest.java @@ -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 { + +} diff --git a/Test/Domain/Karten/NarrenkarteTest.java b/Test/Domain/Karten/NarrenkarteTest.java new file mode 100644 index 0000000..dfc5fab --- /dev/null +++ b/Test/Domain/Karten/NarrenkarteTest.java @@ -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 { + +} diff --git a/Test/Domain/Karten/ZahlenkarteTest.java b/Test/Domain/Karten/ZahlenkarteTest.java new file mode 100644 index 0000000..ebbc270 --- /dev/null +++ b/Test/Domain/Karten/ZahlenkarteTest.java @@ -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 { + +} diff --git a/Test/Facade/SpielTest.java b/Test/Facade/SpielTest.java new file mode 100644 index 0000000..636a76b --- /dev/null +++ b/Test/Facade/SpielTest.java @@ -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 { + +} diff --git a/Test/UI/PersistenzTest.java b/Test/UI/PersistenzTest.java new file mode 100644 index 0000000..0b39d35 --- /dev/null +++ b/Test/UI/PersistenzTest.java @@ -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 { + +} diff --git a/Test/UI/SpielCLITest.java b/Test/UI/SpielCLITest.java new file mode 100644 index 0000000..0fb1c8d --- /dev/null +++ b/Test/UI/SpielCLITest.java @@ -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 { + +}