public void BeforeEveryTest()
        {
            _list = new List<int> {1, 2, 3};
            _collection = new ObservableCollection<int>(_list);

            _collection.AssociateWith(_list);
        }