diff --git a/app/code/Magento/Webapi/Test/Unit/Model/ServiceMetadataTest.php b/app/code/Magento/Webapi/Test/Unit/Model/ServiceMetadataTest.php
index 7aa99a69c109a145c57f9e81c3d571a03663a381..4125f82b7923ffb30a3bfc0d86f3414255498231 100644
--- a/app/code/Magento/Webapi/Test/Unit/Model/ServiceMetadataTest.php
+++ b/app/code/Magento/Webapi/Test/Unit/Model/ServiceMetadataTest.php
@@ -96,6 +96,9 @@ class ServiceMetadataTest extends \PHPUnit_Framework_TestCase
         $this->assertEquals($servicesConfig, $this->serviceMetadata->getServicesConfig());
     }
 
+    /**
+     * @SuppressWarnings(PHPMD.ExcessiveMethodLength)
+     */
     public function testGetServicesConfigNoCache()
     {
         $servicesConfig = [
@@ -252,6 +255,9 @@ class ServiceMetadataTest extends \PHPUnit_Framework_TestCase
         $this->assertEquals($routesConfig, $this->serviceMetadata->getRoutesConfig());
     }
 
+    /**
+     * @SuppressWarnings(PHPMD.ExcessiveMethodLength)
+     */
     public function testGetRoutesConfigNoCache()
     {
         $servicesConfig = [
@@ -460,5 +466,4 @@ class ServiceMetadataTest extends \PHPUnit_Framework_TestCase
             ['Foo\\BarV1Interface', 'V1'] // Missed module and Service
         ];
     }
-
 }