We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0391c57 + 9190d33 commit 5e834d7Copy full SHA for 5e834d7
setup/src/Magento/Setup/Test/Unit/Fixtures/StoresFixtureTest.php
@@ -75,23 +75,20 @@ public function testExecute()
75
$categoryMock = $this->getMock(
76
'Magento\Catalog\Model\Category',
77
[
78
- 'setId',
79
'setName',
80
'setPath',
81
'setLevel',
82
'setAvailableSortBy',
83
'setDefaultSortBy',
84
'setIsActive',
85
'getId',
86
- 'save'
+ 'save',
+ 'load'
87
],
88
[],
89
'',
90
false
91
);
92
- $categoryMock->expects($this->once())
93
- ->method('setId')
94
- ->willReturnSelf();
95
$categoryMock->expects($this->once())
96
->method('setName')
97
->willReturnSelf();
0 commit comments