예제 #1
0
 /**
  * @covers ByJG\AnyDataset\Repository\SingleRow::removeFieldName
  * @todo   Implement testRemoveFieldName().
  */
 public function testRemoveFieldName2()
 {
     $this->fill();
     $this->object->removeFieldName('field2');
     $this->assertEquals(10, $this->object->getField('field1'));
     $this->assertEquals(null, $this->object->getField('field2'));
 }