Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
DummyButtonTest.php
Go to the documentation of this file.
1 <?php
7 
10 
14 class DummyButtonTest extends \PHPUnit\Framework\TestCase
15 {
19  public function testGetButtonData()
20  {
21  $objectManagerHelper = new ObjectManagerHelper($this);
22  $dummyButton = $objectManagerHelper->getObject(DummyButton::class);
23  $this->assertSame([], $dummyButton->getButtonData());
24  }
25 }