This commit is contained in:
Dennis Eichhorn 2020-09-25 15:58:20 +02:00 committed by GitHub
parent 7a3b8aab82
commit ad28da979e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,6 +14,7 @@ declare(strict_types=1);
namespace phpOMS\tests\Socket\Client;
use phpOMS\Account\Account;
use phpOMS\Socket\Client\ClientConnection;
use phpOMS\Socket\Client\NullClientConnection;
@ -24,6 +25,6 @@ final class NullClientConnectionTest extends \PHPUnit\Framework\TestCase
{
public function testDefault() : void
{
self::assertInstanceOf(ClientConnection::class, new NullClientConnection());
self::assertInstanceOf(ClientConnection::class, new NullClientConnection(new Account(), null));
}
}