Skip to content

Commit 0d7db9e

Browse files
AC-15182: PHPUnit 12 Upgrade | Fix Integration test failure
1 parent 5eb7d56 commit 0d7db9e

File tree

1 file changed

+68
-0
lines changed

1 file changed

+68
-0
lines changed

app/code/Magento/Customer/Test/Unit/Helper/CustomerExtensionTestHelper.php

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,4 +123,72 @@ public function setVertexCustomerCode($vertexCustomerCode)
123123
{
124124
return $this;
125125
}
126+
127+
/**
128+
* @return mixed
129+
*/
130+
public function getAllCompanyAttributes()
131+
{
132+
return null;
133+
}
134+
135+
/**
136+
* @param mixed $allCompanyAttributes
137+
* @return $this
138+
*/
139+
public function setAllCompanyAttributes($allCompanyAttributes)
140+
{
141+
return $this;
142+
}
143+
144+
/**
145+
* @return mixed
146+
*/
147+
public function getTestGroupCode()
148+
{
149+
return null;
150+
}
151+
152+
/**
153+
* @param mixed $testGroupCode
154+
* @return $this
155+
*/
156+
public function setTestGroupCode($testGroupCode)
157+
{
158+
return $this;
159+
}
160+
161+
/**
162+
* @return mixed
163+
*/
164+
public function getSalesRepresentativeId()
165+
{
166+
return null;
167+
}
168+
169+
/**
170+
* @param mixed $salesRepresentativeId
171+
* @return $this
172+
*/
173+
public function setSalesRepresentativeId($salesRepresentativeId)
174+
{
175+
return $this;
176+
}
177+
178+
/**
179+
* @return mixed
180+
*/
181+
public function getTestGroup()
182+
{
183+
return null;
184+
}
185+
186+
/**
187+
* @param mixed $testGroup
188+
* @return $this
189+
*/
190+
public function setTestGroup($testGroup)
191+
{
192+
return $this;
193+
}
126194
}

0 commit comments

Comments
 (0)