blob: 27bd10dea05135333dd503bee185a5703453180f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?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() {
$token = $this->createMock(IToken::class);
$event = new RemoteWipeStarted($token);
$this->assertSame($token, $event->getToken());
}
}
|