Viewing file: FQDNTest.php (1.78 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Telnyx;
/** * @internal * @covers \Telnyx\FQDN */ final class FQDNTest extends \Telnyx\TestCase { const TEST_RESOURCE_ID = '123';
public function testIsListable() { $this->expectsRequest( 'get', '/v2/fqdns' ); $resources = FQDN::all(); $this->assertInstanceOf(\Telnyx\Collection::class, $resources); $this->assertInstanceOf(\Telnyx\FQDN::class, $resources['data'][0]); }
public function testIsCreatable() { $this->expectsRequest( 'post', '/v2/fqdns' ); $resource = FQDN::create([ "fqdn" => "example.com", "dns_record_type" => "a", "connection_id" => "935728936" ]); $this->assertInstanceOf(\Telnyx\FQDN::class, $resource); }
public function testIsDeletable() { $resource = FQDN::retrieve(self::TEST_RESOURCE_ID); $this->expectsRequest( 'delete', '/v2/fqdns/' . urlencode(self::TEST_RESOURCE_ID) ); $resource->delete(); $this->assertInstanceOf(\Telnyx\FQDN::class, $resource); }
public function testIsRetrievable() { $this->expectsRequest( 'get', '/v2/fqdns/' . urlencode(self::TEST_RESOURCE_ID) ); $resource = FQDN::retrieve(self::TEST_RESOURCE_ID); $this->assertInstanceOf(\Telnyx\FQDN::class, $resource); }
public function testIsUpdatable() { $this->expectsRequest( 'patch', '/v2/fqdns/' . urlencode(self::TEST_RESOURCE_ID) ); $resource = FQDN::update(self::TEST_RESOURCE_ID, [ "fqdn" => "example.com" ]); $this->assertInstanceOf(\Telnyx\FQDN::class, $resource); } }
|