-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Delete contact logic migrated to service and status handled with the …
…help of enum(created). Test for deleting contac for the given user added. Assertions updated for other tests as well with control like @order() (for test method's order), @RepeatedTest() and @tag().
- Loading branch information
Badri Paudel
committed
Mar 17, 2024
1 parent
b65a06c
commit 2aac07f
Showing
4 changed files
with
103 additions
and
22 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package info.keeper; | ||
|
||
public enum AppEnum { | ||
NOT_AUTHORIZED, | ||
AUTHORIZED, | ||
OPERATION_FAILED, | ||
OPERATION_SUCCESS | ||
} |
This file contains 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
This file contains 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
This file contains 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