Skip to content

Commit 6475a3d

Browse files
MAGETWO-36972: Expose CMS api's as web API
1 parent af88535 commit 6475a3d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dev/tests/api-functional/testsuite/Magento/Cms/Api/PageRepositoryTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function tearDown()
6969
/**
7070
* Test get \Magento\Cms\Api\Data\PageInterface
7171
*/
72-
public function _testGet()
72+
public function testGet()
7373
{
7474
$pageTitle = 'Page title';
7575
$pageIdentifier = 'page-title' . uniqid();
@@ -139,7 +139,7 @@ public function testCreate()
139139
/**
140140
* Test update \Magento\Cms\Api\Data\PageInterface
141141
*/
142-
public function _testUpdate()
142+
public function testUpdate()
143143
{
144144
$pageTitle = 'Page title';
145145
$newPageTitle = 'New Page title';
@@ -182,7 +182,7 @@ public function _testUpdate()
182182
* Test delete \Magento\Cms\Api\Data\PageInterface
183183
* @expectedException \Magento\Framework\Exception\NoSuchEntityException
184184
*/
185-
public function _testDelete()
185+
public function testDelete()
186186
{
187187
$pageTitle = 'Page title';
188188
$pageIdentifier = 'page-title' . uniqid();
@@ -211,7 +211,7 @@ public function _testDelete()
211211
/**
212212
* Test search \Magento\Cms\Api\Data\PageInterface
213213
*/
214-
public function _testSearch()
214+
public function testSearch()
215215
{
216216
$pageTitle = 'Page title';
217217
$pageIdentifier = 'page-title' . uniqid();

0 commit comments

Comments
 (0)