dns-over-https/test/JsonDecoderFactoryTest.php
2019-06-11 19:07:51 +02:00

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());
}
}