Пример #1
0
 public function testSkipGenerationForGlobalScope()
 {
     $this->category->expects($this->any())->method('getStoreIds')->will($this->returnValue([1, 2]));
     $this->storeViewService->expects($this->exactly(2))->method('doesEntityHaveOverriddenUrlKeyForStore')->will($this->returnValue(true));
     $this->assertEquals([], $this->categoryUrlRewriteGenerator->generate($this->category));
 }