Example #1
0
 /**
  * Tests \Magento\Framework\DataObject->serialize()
  */
 public function testSerialize()
 {
     $this->_object->setData('key1', 'value1');
     $this->_object->setData('key2', 'value2');
     $this->assertEquals('key1="value1" key2="value2"', $this->_object->serialize());
     $this->assertEquals('key1:\'value1\'_key2:\'value2\'', $this->_object->serialize(['key', 'key1', 'key2'], ':', '_', '\''));
 }