Exemplo n.º 1
0
 /**
  * @covers Binary\DataSet::getValue
  */
 public function testNestedGetValue()
 {
     $dataSet = new DataSet();
     $dataSet->push('level1');
     $dataSet->setValue('foo', 'bar');
     $this->assertEquals('bar', $dataSet->getValue('foo'));
 }