Inheritance: extends Illuminate\Database\Eloquent\Model, use trait Illuminate\Database\Eloquent\SoftDeletes, use trait Askedio\SoftCascade\Traits\SoftCascadeTrait
 public function testMultipleRestore()
 {
     $this->createUserRaw();
     $this->createUserRaw();
     User::first()->delete();
     User::withTrashed()->first()->restore();
     $this->assertEquals(2, User::withTrashed()->count());
     $this->assertEquals(2, User::count());
     $this->assertEquals(2, Profiles::withTrashed()->count());
     $this->assertEquals(2, Profiles::count());
     User::first()->restore();
 }