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