using GameIdeas.Shared.Model; using Microsoft.AspNetCore.Identity; namespace GameIdeas.WebAPI.Tests { [TestClass] public sealed class IdentityTest { [TestMethod] public void GetPasswordHash() { var hasher = new PasswordHasher(); var hash = hasher.HashPassword(null!, "GameIdeas"); Console.WriteLine(hash); } } }