Skip to content

Commit

Permalink
User service test (#76)
Browse files Browse the repository at this point in the history
* feat(UserTest):start UserServiceTest:)

* feat(UserTest):Completing PasswordServiceTest

* feat(UserService):add PasswordManagerTest

* feat(UserService):add LoginManagerTest

* feat(UserService):add ValidationServiceTest

* feat(UserService):add PasswordHasherTests

* fix(UserDto):correct name convention of UserDto

* fix(UserServiceTests): Update comments in tests based on feedback

* fix(UserServiceTest):Delete extra function

* fix confilicts

* fix test
  • Loading branch information
AmirRezaZahedi authored Sep 5, 2024
1 parent b843473 commit 6651533
Show file tree
Hide file tree
Showing 36 changed files with 1,045 additions and 1,455 deletions.
1 change: 1 addition & 0 deletions AnalysisData/AnalysisData/AnalysisData.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
<PackageReference Include="QuickGraph" Version="3.6.61119.7" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.7.0" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.0.1" />
<PackageReference Include="xunit.extensibility.core" Version="2.5.3" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
namespace AnalysisData.Exception;

public class PasswordHasherInputNull : ServiceException
{
public PasswordHasherInputNull() : base(Resources.PasswordHasherInputNull, StatusCodes.Status400BadRequest)
{
}
}
Loading

0 comments on commit 6651533

Please sign in to comment.