This application allows the userEntity to register, login, add, modify and delete tasks. It has unit tests with Mockito and JUnit
classDiagram
class User {
-UUID id
-String username
-String password
}
class Task {
-UUID id
-String title
-String description
-Priority priority
-Status status
-UUID userId
}
User "1" *-- "N" Task
- Java 17
Clone the repository/download and unzip the source code and run using an IDE.