mirror of
https://github.com/danog/dns-over-https.git
synced 2024-11-30 04:19:11 +01:00
16 lines
323 B
PHP
16 lines
323 B
PHP
<?php
|
|
|
|
namespace Amp\DoH\Test;
|
|
|
|
use Amp\DoH\QueryEncoder;
|
|
use Amp\DoH\QueryEncoderFactory;
|
|
use Amp\PHPUnit\TestCase;
|
|
|
|
class QueryEncoderFactoryTest extends TestCase
|
|
{
|
|
public function testQueryEncoderFactoryWorks()
|
|
{
|
|
$this->assertInstanceOf(QueryEncoder::class, (new QueryEncoderFactory)->create());
|
|
}
|
|
}
|