Skip to content

Commit ed1b9c5

Browse files
Igor Melnikovbuskamuza
authored andcommitted
MAGETWO-58692: Refactor Module_Webapi, Module_Elasticsearch
Introducing SerializerInterface
1 parent a2b9f0e commit ed1b9c5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

app/code/Magento/Webapi/Test/Unit/Model/ServiceMetadataTest.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,9 @@ public function testGetServicesConfig()
9696
$this->assertEquals($servicesConfig, $this->serviceMetadata->getServicesConfig());
9797
}
9898

99+
/**
100+
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
101+
*/
99102
public function testGetServicesConfigNoCache()
100103
{
101104
$servicesConfig = [
@@ -252,6 +255,9 @@ public function testGetRoutesConfig()
252255
$this->assertEquals($routesConfig, $this->serviceMetadata->getRoutesConfig());
253256
}
254257

258+
/**
259+
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
260+
*/
255261
public function testGetRoutesConfigNoCache()
256262
{
257263
$servicesConfig = [
@@ -460,5 +466,4 @@ public function getServiceNameInvalidNameDataProvider()
460466
['Foo\\BarV1Interface', 'V1'] // Missed module and Service
461467
];
462468
}
463-
464469
}

0 commit comments

Comments
 (0)