Open Issues Need Help
View All on GitHubAI Summary: This GitHub issue addresses a C# compiler warning (CS8625) related to null-allowable reference types in the `AuthService.Tests` project. The warning occurs when mocking `UserManager` and `RoleManager` using Moq and passing `null` to constructor parameters that are not nullable. The proposed solutions involve either explicitly suppressing the warning with `null!` or providing mock objects using `Mock.Of<T>()`.
Complexity:
2/5
bug good first issue