Exemplo n.º 1
0
 /**
  * @test
  *
  * @expectedException Tx_Phpunit_Exception_Database
  */
 public function changeRecordFailsOnInexistentRecord()
 {
     $uid = $this->fixture->createRecord('tx_phpunit_test', array());
     $this->fixture->changeRecord('tx_phpunit_test', $uid + 1, array('title' => 'foo'));
 }