public async Task TestGetDonorsAsync()
        {
            var donors = await DenariService.GetDonorsAsync().ToListAsync();

            Assert.True(donors.All(d => d != null));
            Assert.True(donors.Any(d => d.Account == "112196"));
        }