You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nextcloud/tests/lib/Talk/ConversationOptionsTest.php

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