Example #1
0
 /**
  * @group Common
  */
 public function testIsModified()
 {
     $c = new DataContainer(array('yes' => true));
     $this->assertFalse($c->isModified());
     $c->set('yes', false);
     $this->assertTrue($c->isModified());
 }