Last active
June 2, 2018 11:33
-
-
Save FraukeN/67c8ee7749cfaf740cb3a6c695e7122a to your computer and use it in GitHub Desktop.
OverViewVM LoadData test 1
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 characters
[Test] | |
public async Task LoadData_loads_data_from_repository() | |
{ | |
// Arrange | |
OverviewVM vm = new OverviewVM(); | |
// Act | |
await vm.LoadData(); | |
// Assert | |
Assert.That(vm.ToDoItems.Count(), Is.EqualTo(3)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment