graphql-php/tests/UtilsTest.php
2018-09-02 13:39:30 +02:00

22 lines
548 B
PHP

<?php
declare(strict_types=1);
namespace GraphQL\Tests;
use GraphQL\Utils\Utils;
use PHPUnit\Framework\TestCase;
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']);
}
}