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;
    }