diff --git a/application/src/Controller/DefaultController.php b/application/src/Controller/DefaultController.php new file mode 100644 index 0000000..287e92f --- /dev/null +++ b/application/src/Controller/DefaultController.php @@ -0,0 +1,30 @@ +defaultController = new DefaultController(); + } + + public function testHomepage():void{ + $this->assertEquals(true, $this->defaultController->homepage()->isSuccessful()); + } + + public function testImprint():void{ + $this->assertEquals(true, $this->defaultController->imprint()->isSuccessful()); + } +} +