diff options
Diffstat (limited to 'tests/lib/Talk/ConversationOptionsTest.php')
-rw-r--r-- | tests/lib/Talk/ConversationOptionsTest.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/lib/Talk/ConversationOptionsTest.php b/tests/lib/Talk/ConversationOptionsTest.php new file mode 100644 index 00000000000..ca6befbd7c9 --- /dev/null +++ b/tests/lib/Talk/ConversationOptionsTest.php @@ -0,0 +1,21 @@ +<?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); + } +} |