Last active
June 2, 2018 11:32
-
-
Save FraukeN/288971a3d7739a566fa03f33b91ccf75 to your computer and use it in GitHub Desktop.
Revisions
-
FraukeN revised this gist
Jun 2, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -7,5 +7,5 @@ public async Task LoadData_loads_data_from_repository() await vm.LoadData(); // Assert Assert.That(vm.ToDoItems.Count(), Is.EqualTo(3)); } -
FraukeN created this gist
Jun 2, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ public async Task LoadData_loads_data_from_repository() { // Arrange OverviewVM vm = new OverviewVM(new MockRepository()); // Act await vm.LoadData(); // Assert Assert.AreEqual(3, vm.ToDoItems.Count()); }