mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-10-31 09:19:08 +00:00 
			
		
		
		
	General optimation of tests and namespaces
This commit is contained in:
		
							
								
								
									
										36
									
								
								application/tests/Unit/Controller/DefaultControllerTest.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										36
									
								
								application/tests/Unit/Controller/DefaultControllerTest.php
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,36 @@ | ||||
| <?php | ||||
|  | ||||
| namespace App\Tests\Unit\Controller; | ||||
|  | ||||
| use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; | ||||
| use App\Controller\DefaultController; | ||||
|  | ||||
| /** | ||||
|  * @author kevinfrantz | ||||
|  */ | ||||
| class DefaultControllerTest extends WebTestCase | ||||
| { | ||||
|     /** | ||||
|      * @var DefaultController | ||||
|      */ | ||||
|     protected $defaultController; | ||||
|  | ||||
|     public function setUp(): void | ||||
|     { | ||||
|         $this->defaultController = new DefaultController(); | ||||
|     } | ||||
|  | ||||
|     public function testHomepage(): void | ||||
|     { | ||||
|         $client = static::createClient(); | ||||
|         $client->request('GET', '/'); | ||||
|         $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||||
|     } | ||||
|  | ||||
|     public function testImprint(): void | ||||
|     { | ||||
|         $client = static::createClient(); | ||||
|         $client->request('GET', '/imprint'); | ||||
|         $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user