Ejemplo n.º 1
0
 public void Setup()
 {
     _listWatcher = new ListWatcher();
     _integerQueryable = (new[] { 1, 2, 3, 4, 5 }).AsQueryable();
     _watchedQueryable = new WatchedQueryable<int>(_integerQueryable, "base", _listWatcher);
 }
Ejemplo n.º 2
0
 public void Setup()
 {
     _integerEnumerable = new[] { 1, 2, 3, 4 };
     _listWatcher       = new ListWatcher();
     _watchedEnumerable = new WatchedEnumerable<int>(_integerEnumerable, "base", _listWatcher);
 }