/**
  * @test
  */
 public function testConstruct()
 {
     $table = new Table('user');
     $this->assertEquals('user', $table->getName());
 }
 /**
  * Returns the table name.
  *
  * @param Table $table
  *
  * @return string
  */
 public function writeTableName(Table $table)
 {
     return $table->getName();
 }