Code Duplication    Length = 19-19 lines in 2 locations

eZ/Publish/API/Repository/Tests/LocationServiceTest.php 1 location

@@ 1531-1549 (lines=19) @@
1528
     *
1529
     * @param \eZ\Publish\API\Repository\Values\Content\ContentInfo $contentInfo
1530
     */
1531
    private function assertDefaultContentStates(ContentInfo $contentInfo)
1532
    {
1533
        $repository = $this->getRepository();
1534
        $objectStateService = $repository->getObjectStateService();
1535
1536
        $objectStateGroups = $objectStateService->loadObjectStateGroups();
1537
1538
        foreach ($objectStateGroups as $objectStateGroup) {
1539
            $contentState = $objectStateService->getContentState($contentInfo, $objectStateGroup);
1540
            foreach ($objectStateService->loadObjectStates($objectStateGroup) as $objectState) {
1541
                // Only check the first object state which is the default one.
1542
                $this->assertEquals(
1543
                    $objectState,
1544
                    $contentState
1545
                );
1546
                break;
1547
            }
1548
        }
1549
    }
1550
1551
    /**
1552
     * Test for the copySubtree() method.

eZ/Publish/API/Repository/Tests/ContentServiceTest.php 1 location

@@ 4772-4790 (lines=19) @@
4769
     *
4770
     * @param \eZ\Publish\API\Repository\Values\Content\ContentInfo $contentInfo
4771
     */
4772
    private function assertDefaultContentStates(ContentInfo $contentInfo)
4773
    {
4774
        $repository = $this->getRepository();
4775
        $objectStateService = $repository->getObjectStateService();
4776
4777
        $objectStateGroups = $objectStateService->loadObjectStateGroups();
4778
4779
        foreach ($objectStateGroups as $objectStateGroup) {
4780
            $contentState = $objectStateService->getContentState($contentInfo, $objectStateGroup);
4781
            foreach ($objectStateService->loadObjectStates($objectStateGroup) as $objectState) {
4782
                // Only check the first object state which is the default one.
4783
                $this->assertEquals(
4784
                    $objectState,
4785
                    $contentState
4786
                );
4787
                break;
4788
            }
4789
        }
4790
    }
4791
4792
    /**
4793
     * Returns the default fixture of fields used in most tests.