public function test_integer()
 {
     $this->dbal->shouldReceive('addColumn')->with('column', 'integer', ['autoIncrement' => false, 'unsigned' => false]);
     $this->table->integer('column');
     $this->dbal->shouldReceive('addColumn')->with('column', 'integer', ['autoIncrement' => true, 'unsigned' => true]);
     $this->table->integer('column', true, true);
 }