0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-05-02 13:00:42 +00:00
nextcloud_server/tests/lib/Talk/ConversationOptionsTest.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
399 B
PHP
Raw Normal View History

<?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);
}
}