AcControllerResourceTest::testShouldBeParentIfSpecifiedInOptions PHP Метод

testShouldBeParentIfSpecifiedInOptions() публичный Метод

// Should be parent if specified in options
    public function testShouldBeParentIfSpecifiedInOptions()
    {
        $resource = new Efficiently\AuthorityController\ControllerResource($this->controller, 'project', ['parent' => true]);
        $this->assertTrue($resource->isParent());
    }
AcControllerResourceTest