mirror of
https://github.com/nextcloud/server.git
synced 2025-01-15 23:59:16 +00:00
1f7e2ba599
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
21 lines
399 B
PHP
21 lines
399 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace Test\Talk;
|
|
|
|
use OC\Talk\ConversationOptions;
|
|
use Test\TestCase;
|
|
|
|
class ConversationOptionsTest extends TestCase {
|
|
public function testDefaults(): void {
|
|
ConversationOptions::default();
|
|
|
|
$this->addToAssertionCount(1);
|
|
}
|
|
}
|