public function testDatabaseQueryBuilderWithPreCondition()
 {
     $provider = new EloquentDataProvider(DB::table('test_users')->where('name', '=', 'David')->orderBy('id'));
     self::assertEquals(1, $provider->count());
 }