graphql-php/tests/UtilsTest.php
2018-10-05 10:47:57 +02:00

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']);
}
}