1
0
mirror of https://github.com/danog/LibDNSNative.git synced 2024-11-30 04:29:07 +01:00
LibDNSNative/test/NativeEncoderFactoryTest.php

16 lines
368 B
PHP
Raw Permalink Normal View History

2019-07-15 14:41:26 +02:00
<?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());
}
}