NerdsAndCompany\Schematic\Services\SchematicTest::getMockSectionsService PHP Метод

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

public getMockSectionsService ( ) : PHPUnit_Framework_MockObject_MockObject | Craft\SectionsService
Результат PHPUnit_Framework_MockObject_MockObject | Craft\SectionsService
    public function getMockSectionsService()
    {
        $mock = $this->getMockBuilder(SectionsService::class)->disableOriginalConstructor()->getMock();
        $mock->expects($this->exactly(1))->method('getAllSections')->willReturn([]);
        return $mock;
    }