mirror of
https://github.com/nextcloud/server.git
synced 2024-12-28 07:58:42 +00:00
1f7e2ba599
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
22 lines
501 B
PHP
22 lines
501 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace Test;
|
|
|
|
use OC\EventSourceFactory;
|
|
use OCP\IEventSource;
|
|
use OCP\IRequest;
|
|
|
|
class EventSourceFactoryTest extends TestCase {
|
|
public function testCreate(): void {
|
|
$request = $this->createMock(IRequest::class);
|
|
$factory = new EventSourceFactory($request);
|
|
|
|
$instance = $factory->create();
|
|
$this->assertInstanceOf(IEventSource::class, $instance);
|
|
}
|
|
}
|