mirror of
https://github.com/danog/dns-over-https.git
synced 2025-01-23 05:41:17 +01:00
15 lines
316 B
PHP
15 lines
316 B
PHP
<?php
|
|
|
|
namespace Amp\DoH\Test;
|
|
|
|
use Amp\PHPUnit\TestCase;
|
|
use Amp\DoH\JsonDecoderFactory;
|
|
use Amp\DoH\JsonDecoder;
|
|
|
|
class JsonDecoderFactoryTest extends TestCase
|
|
{
|
|
public function testJsonDecoderFactoryWorks()
|
|
{
|
|
$this->assertInstanceOf(JsonDecoder::class, (new JsonDecoderFactory)->create());
|
|
}
|
|
} |