コード例 #1
0
ファイル: EntityTest.php プロジェクト: rashmi/newrepo
 /**
  * Test that all original values are returned properly
  *
  * @return void
  */
 public function testExtractOriginalValues()
 {
     $entity = new Entity(['id' => 1, 'title' => 'original', 'body' => 'no', 'null' => null], ['markNew' => true]);
     $entity->set('body', 'updated body');
     $result = $entity->getOriginalValues();
     $expected = ['id' => 1, 'title' => 'original', 'body' => 'no', 'null' => null];
     $this->assertEquals($expected, $result);
 }