protected override void OnInitialize() { base.OnInitialize(); // TODO WTS: Replace this with your actual data Source.AddRange(SampleDataService.GetGallerySampleData()); }
public void EnsureSampleDataServiceReturnsGalleryData() { var dataService = new SampleDataService(); var actual = dataService.GetGallerySampleData(); Assert.AreNotEqual(0, actual.Count); }
public void EnsureSampleDataServiceReturnsGalleryData() { var dataService = new SampleDataService(); var actual = dataService.GetGallerySampleData(); Assert.NotEmpty(actual); }
protected override void OnInitialize() { base.OnInitialize(); var view = GetView() as IImageGalleryViewPage; _imagesGridView = view.GetGridView(); // TODO WTS: Replace this with your actual data Source.AddRange(SampleDataService.GetGallerySampleData()); }