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