GraphQL\Tests\Type\SchemaValidatorTest::assertRejectingFieldArgOfType PHP Method

assertRejectingFieldArgOfType() private method

private assertRejectingFieldArgOfType ( $fieldArgType )
    private function assertRejectingFieldArgOfType($fieldArgType)
    {
        $schema = $this->schemaWithFieldArgOfType($fieldArgType);
        $validationResult = SchemaValidator::validate($schema, [SchemaValidator::noOutputTypesAsInputArgsRule()]);
        $this->expectRejectionBecauseFieldIsNotInputType($validationResult, $fieldArgType);
    }
SchemaValidatorTest