public async Task GetTotalRegisteredUsersCount_Should_Return_Proper_Count()
        {
            using var context = await this.GetDatabase();

            var mapper           = this.GetMapper();
            var characterService = new CharacterService(context, mapper);
            var raidService      = new RaidService(context, characterService, mapper);
            var guildService     = new GuildService(null, context, raidService, characterService, mapper);

            var expected = 1;
            var actual   = guildService.GetTotalRegisteredUsersCount();

            Assert.Equal(expected, actual);
        }