public void TestRefreshViewsDoesntDownload() { /* The RefreshViews method is only there so that anything listening * for a property change can refresh itself via that method - useful * when settings change, for example. */ EarthquakeContainer container = new EarthquakeContainer(); var quakes = new System.Collections.ObjectModel.ObservableCollection<Earthquake>(); container.Quakes = quakes; container.PropertyChanged += (sender, e) => { Assert.AreEqual(EarthquakeContainer.QuakesUpdatedEventKey, e.PropertyName); EnqueueTestComplete(); }; container.RefreshViews(); }