rework messages

+ addition LocalStorageService
+ tests
This commit is contained in:
Artemy
2025-06-21 14:53:15 +07:00
parent 3f1c050149
commit 7831e4838a
16 changed files with 204 additions and 13 deletions
@@ -39,6 +39,10 @@ public class UsersRepositoryTests
var random = new Random();
var users = _fixture.CreateMany<User>(random.Next(2, 10)).ToList();
_options = new DbContextOptionsBuilder<GovorDbContext>()
.UseInMemoryDatabase(databaseName: "DbGovor_users_getall")
.Options;
await using var context = new GovorDbContext(_options);
var userRepository = new UsersRepository(context, _userValidator);