feat: Fix build and add unit tests - #20
Merged
Merged
Conversation
This commit fixes a persistent build error by correcting namespaces and project references. It also adds a new unit test project with basic tests for the `RegisterUserCommandHandler` and `LoginUserCommandHandler`. The following changes were made: - Corrected namespaces in all interface files in the `Application/Contracts` directory to `IdentityService.Application.Contracts`. - Updated `using` statements in all files that reference the interfaces in `Application/Contracts` to use the new `IdentityService.Application.Contracts` namespace. - Recreated the `IdentityService.UnitTests` project and added basic unit tests. - Corrected the `docker-compose` command in the `run.sh` script to `docker compose`. - Added `sudo` to the `docker compose` commands in the `run.sh` script to address permission issues.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This commit fixes a persistent build error by correcting namespaces and project references. It also adds a new unit test project with basic tests for the
RegisterUserCommandHandlerandLoginUserCommandHandler.The following changes were made:
Application/Contractsdirectory toIdentityService.Application.Contracts.usingstatements in all files that reference the interfaces inApplication/Contractsto use the newIdentityService.Application.Contractsnamespace.IdentityService.UnitTestsproject and added basic unit tests.docker-composecommand in therun.shscript todocker compose.sudoto thedocker composecommands in therun.shscript to address permission issues.