예제 #1
0
 /**
  * Tests that creating a model with no existent database table associated will throw an exception
  *
  * @expectedException MissingTableException
  * @return void
  */
 public function testMissingTable()
 {
     $Boat = new BoatB(false, uniqid());
     $Boat->schema();
 }