diff --git a/tests/Action/ResetActionWebTest.php b/tests/Action/ResetActionWebTest.php deleted file mode 100644 index b1ce64a..0000000 --- a/tests/Action/ResetActionWebTest.php +++ /dev/null @@ -1,30 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Nucleos\UserAdminBundle\Tests\Action; - -use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; -use Symfony\Component\HttpFoundation\Response; - -/** - * @covers \Nucleos\UserAdminBundle\Action\ResetAction - */ -final class ResetActionWebTest extends WebTestCase -{ - public function testRequestInvalidToken(): void - { - $client = self::createClient(); - - $client->request('GET', '/admin/resetting/reset/my-token'); - - self::assertResponseStatusCodeSame(Response::HTTP_NOT_FOUND); - } -}