GraphQL\Tests\Validator\ArgumentsOfCorrectTypeTest::testBooleanIntoString PHP Method

testBooleanIntoString() public method

    public function testBooleanIntoString()
    {
        $this->expectFailsRule(new ArgumentsOfCorrectType(), '
        {
          complicatedArgs {
            stringArgField(stringArg: true)
          }
        }
        ', [$this->badValue('stringArg', 'String', 'true', 4, 39)]);
    }
ArgumentsOfCorrectTypeTest