/**
  * @covers Binary\DataSet::setValueByPath
  */
 public function testNestedSetValueByPath()
 {
     $dataSet = new DataSet();
     $dataSet->setValueByPath(array('level1', 'foo'), 'bar');
     $this->assertEquals('bar', $dataSet->getValueByPath(array('level1', 'foo'), true));
 }