From 960eeaf2eeaa106b904035547c9778d1ec8bdfeb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Sun, 25 Feb 2018 06:00:14 +0100 Subject: [PATCH] Add default unit test --- Tests/Controller/DefaultControllerTest.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Tests/Controller/DefaultControllerTest.php diff --git a/Tests/Controller/DefaultControllerTest.php b/Tests/Controller/DefaultControllerTest.php new file mode 100644 index 0000000..505db3d --- /dev/null +++ b/Tests/Controller/DefaultControllerTest.php @@ -0,0 +1,17 @@ +request('GET', '/'); + + $this->assertContains('Hello World', $client->getResponse()->getContent()); + } +} -- 2.41.0