public function test_remember_token()
 {
     $column = m::mock(Column::class);
     $this->dbal->shouldReceive('addColumn')->with('remember_token', 'string', ['length' => 100])->andReturn($column);
     $column->shouldReceive('setNotnull')->with(false)->once();
     $this->table->rememberToken('column');
 }