/**
  * @throws Exception if non-recoverable error
  */
 public function uninstall()
 {
     Model::uninstall();
 }
示例#2
0
 public function test_uninstall_ShouldNotFailAndRemovesAllAlertTables()
 {
     Model::uninstall();
     $this->assertNotContainTables(array('user_language'));
     Model::install();
 }