Пример #1
0
        public async Task DeleteDataAsync_Should_Delete_User_Data_With_Correct_IdAsync(string username, Guid id)
        {
            await _jsonServiceInstance.DeleteDataAsync(username, id);

            await _jsonRepository.Received().DeleteJsonAsync(username, id);
        }