mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-21 20:36:05 +03:00
24 lines
590 B
PHP
24 lines
590 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace GraphQL\Tests;
|
|
|
|
use GraphQL\Utils\Utils;
|
|
use InvalidArgumentException;
|
|
use PHPUnit\Framework\TestCase;
|
|
use stdClass;
|
|
|
|
class UtilsTest extends TestCase
|
|
{
|
|
public function testAssignThrowsExceptionOnMissingRequiredKey() : void
|
|
{
|
|
$object = new stdClass();
|
|
$object->requiredKey = 'value';
|
|
|
|
$this->expectException(InvalidArgumentException::class);
|
|
$this->expectExceptionMessage('Key requiredKey is expected to be set and not to be null');
|
|
Utils::assign($object, [], ['requiredKey']);
|
|
}
|
|
}
|