Example #1
0
        public async Task LoadAsync()
        {
            var actual = await _sut.Load <Person>().ByIdAsync("one");

            var expected = GetExpectedPerson("one");

            actual.Should().BeEquivalentTo(expected);
        }