mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-17 17:55:42 +00:00
17 lines
354 B
PHP
17 lines
354 B
PHP
<?php
|
|
|
|
namespace App\Tests\Controller;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
|
|
|
class HomeControllerTest extends WebTestCase
|
|
{
|
|
public function testConnectSsoReturnNotFound(): void
|
|
{
|
|
$client = static::createClient();
|
|
$client->request('GET', '/login/oauth');
|
|
|
|
$this->assertResponseStatusCodeSame(404);
|
|
}
|
|
}
|