Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
SetupTestCase.php
Go to the documentation of this file.
1 <?php
7 
10 
14 class SetupTestCase extends \PHPUnit\Framework\TestCase implements MutableDataInterface
15 {
19  private $data = [];
20 
24  public function setData(array $data)
25  {
26  $this->data = $data;
27  }
28 
32  public function flushData()
33  {
34  $this->data = [];
35  }
36 
40  public function getData()
41  {
42  return $this->data;
43  }
44 }