Skip to content

Commit

Permalink
fix missing fact attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
Eddie Oconnor authored and Eddie Oconnor committed Dec 29, 2024
1 parent 26e42f3 commit cd39616
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions UserService/UserService.UnitTests/PasswordHasherTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

public class PasswordHasherTests
{

[Fact]
public void HashPassword_ShouldReturnHashedPassword_IsString()
{
var passwordHasher = new BCryptPasswordHasher();
Expand All @@ -12,6 +14,8 @@ public void HashPassword_ShouldReturnHashedPassword_IsString()
Assert.IsType<string>(hashedPassword);
}


[Fact]
public void VerifyHashedPassword_ShouldReturnTrue_IsTrue()
{
var passwordHasher = new BCryptPasswordHasher();
Expand Down

0 comments on commit cd39616

Please sign in to comment.