mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-11-04 03:07:58 +00:00 
			
		
		
		
	Implemented tests for all imprint types
This commit is contained in:
		@@ -25,17 +25,19 @@ class DefaultControllerTest extends WebTestCase
 | 
			
		||||
    {
 | 
			
		||||
        $client = static::createClient();
 | 
			
		||||
        $client->request('GET', '/');
 | 
			
		||||
        $this->assertEquals(200, $client->getResponse()->getStatusCode());
 | 
			
		||||
        $this->assertEquals(200, $client->getResponse()
 | 
			
		||||
            ->getStatusCode());
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function testImprint(): void
 | 
			
		||||
    {
 | 
			
		||||
        $client = static::createClient();
 | 
			
		||||
//          foreach(RESTResponseType::getChoices() as $format){
 | 
			
		||||
        $format = 'html';
 | 
			
		||||
        $url = 'api/rest/source/imprint.'.$format;
 | 
			
		||||
        $client->request('GET', $url);
 | 
			
		||||
        $this->assertEquals(200, $client->getResponse()->getStatusCode(), "Route $url is not reachable.");
 | 
			
		||||
//        }
 | 
			
		||||
        foreach (RESTResponseType::getChoices() as $format) {
 | 
			
		||||
            $format = 'html';
 | 
			
		||||
            $url = '/api/rest/source/imprint.'.$format;
 | 
			
		||||
            $client->request('GET', $url);
 | 
			
		||||
            $this->assertEquals(200, $client->getResponse()
 | 
			
		||||
                ->getStatusCode(), "Route $url is not reachable.");
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user