using Novelly.Api.Users; namespace Novelly.Api.Tests; public class TestUserContext : INovelUserContext { public bool IsAuthenticated { get; set; } = true; public Guid? UserId { get; set; } = Guid.NewGuid(); public GlobalRole? GlobalRole { get; set; } = Users.GlobalRole.Admin; }