NerdsAndCompany\Schematic\Services\SchematicTest::getMockCategoriesService PHP Method

getMockCategoriesService() public method

public getMockCategoriesService ( ) : PHPUnit_Framework_MockObject_MockObject | Craft\CategoriesService
return PHPUnit_Framework_MockObject_MockObject | Craft\CategoriesService
    public function getMockCategoriesService()
    {
        $mock = $this->getMockBuilder(CategoriesService::class)->disableOriginalConstructor()->getMock();
        $mock->expects($this->exactly(1))->method('getAllGroups')->willReturn([]);
        return $mock;
    }