Example #1
0
 /**
  * Tests \Magento\Framework\DataObject->toArray()
  */
 public function testToArray()
 {
     $this->assertEquals([], $this->_object->toArray());
     $this->assertEquals(['key' => null], $this->_object->toArray(['key']));
     $this->_object->setData('key1', 'value1');
     $this->_object->setData('key2', 'value2');
     $this->assertEquals(['key1' => 'value1'], $this->_object->toArray(['key1']));
     $this->assertEquals(['key2' => 'value2'], $this->_object->convertToArray(['key2']));
 }