public function testCompleteName()
 {
     $table = new Table("project");
     $table->setAlias("p");
     $table->setSchema("dbo");
     $this->assertEquals("dbo.project AS p", $table->getCompleteName());
 }