mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-12 02:08:40 +00:00
35 lines
718 B
PHP
Executable File
35 lines
718 B
PHP
Executable File
<?php
|
|
/**
|
|
* Karaka
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package tests
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\tests\Socket\Client;
|
|
|
|
use phpOMS\Account\Account;
|
|
use phpOMS\Socket\Client\ClientConnection;
|
|
use phpOMS\Socket\Client\NullClientConnection;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
final class NullClientConnectionTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
/**
|
|
* @covers phpOMS\Socket\Client\NullClientConnection
|
|
* @group framework
|
|
*/
|
|
public function testDefault() : void
|
|
{
|
|
self::assertInstanceOf(ClientConnection::class, new NullClientConnection(new Account(), null));
|
|
}
|
|
}
|