eZ\Publish\Core\Repository\Tests\Service\Integration\ObjectStateBase::testLoadObjectStateGroups PHP Method

testLoadObjectStateGroups() public method

Test service method for loading object state groups.
    public function testLoadObjectStateGroups()
    {
        $groups = $this->repository->getObjectStateService()->loadObjectStateGroups();
        $this->assertInternalType('array', $groups);
        $this->assertCount(1, $groups);
        foreach ($groups as $group) {
            $this->assertInstanceOf('\\eZ\\Publish\\API\\Repository\\Values\\ObjectState\\ObjectStateGroup', $group);
        }
    }