GraphQL\Tests\StartWarsValidationTest::testRequiresFieldsOnObjects PHP Method

testRequiresFieldsOnObjects() public method

    public function testRequiresFieldsOnObjects()
    {
        $query = '
        query HeroNoFieldsQuery {
          hero
        }
        ';
        $errors = $this->validationErrors($query);
        $this->assertEquals(false, empty($errors));
    }