mirror of
https://github.com/danog/LibDNSNative.git
synced 2024-11-30 04:29:07 +01:00
16 lines
368 B
PHP
16 lines
368 B
PHP
<?php
|
|
|
|
namespace danog\LibDNSNative\Test;
|
|
|
|
use danog\LibDNSNative\NativeEncoder;
|
|
use danog\LibDNSNative\NativeEncoderFactory;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class NativeEncoderFactoryTest extends TestCase
|
|
{
|
|
public function testNativeEncoderFactoryWorks()
|
|
{
|
|
$this->assertInstanceOf(NativeEncoder::class, (new NativeEncoderFactory)->create());
|
|
}
|
|
}
|