Implemented tests for all imprint types

This commit is contained in:
Kevin Frantz 2019-02-24 11:14:13 +01:00
parent 3e91aed050
commit 938dd6274d

View File

@ -25,17 +25,19 @@ class DefaultControllerTest extends WebTestCase
{ {
$client = static::createClient(); $client = static::createClient();
$client->request('GET', '/'); $client->request('GET', '/');
$this->assertEquals(200, $client->getResponse()->getStatusCode()); $this->assertEquals(200, $client->getResponse()
->getStatusCode());
} }
public function testImprint(): void public function testImprint(): void
{ {
$client = static::createClient(); $client = static::createClient();
// foreach(RESTResponseType::getChoices() as $format){ foreach (RESTResponseType::getChoices() as $format) {
$format = 'html'; $format = 'html';
$url = 'api/rest/source/imprint.'.$format; $url = '/api/rest/source/imprint.'.$format;
$client->request('GET', $url); $client->request('GET', $url);
$this->assertEquals(200, $client->getResponse()->getStatusCode(), "Route $url is not reachable."); $this->assertEquals(200, $client->getResponse()
// } ->getStatusCode(), "Route $url is not reachable.");
}
} }
} }