Ejemplo n.º 1
0
        public async Task LoadAsync_Toggles_Loading()
        {
            var vm = new TestVM();

            try
            {
                await vm.LoadDataAsync();
            }
            catch { }
            Assert.IsTrue(vm.IsLoading);
        }
Ejemplo n.º 2
0
 public async Task LoadAsync_Throws()
 {
     var vm = new TestVM();
     await vm.LoadDataAsync();
 }