0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-02-15 05:19:16 +00:00
nextcloud_server/tests/lib/Authentication/Events/RemoteWipeStartedTest.php
Christoph Wurst 49dd79eabb
refactor: Add void return type to PHPUnit test methods
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2024-09-15 22:32:31 +02:00

23 lines
534 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace Test\Authentication\Events;
use OC\Authentication\Events\RemoteWipeStarted;
use OC\Authentication\Token\IToken;
use Test\TestCase;
class RemoteWipeStartedTest extends TestCase {
public function testGetToken(): void {
$token = $this->createMock(IToken::class);
$event = new RemoteWipeStarted($token);
$this->assertSame($token, $event->getToken());
}
}