You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add comprehensive unit tests for the ProcessDetails entity class in com.thealgorithms.devutils.entities package. This critical class is used by 5+ scheduling algorithms but currently has zero test coverage.
Issue details
File to create: ProcessDetailsTest.java
Test coverage needed:
Both constructors (with/without priority)
All getter methods (6 methods)
All setter methods (5 methods)
Edge cases: null values, negatives, zeros, max values
Real-world scheduling scenarios
Why important?
ProcessDetails is imported by multiple scheduling algorithm tests
No existing test coverage despite widespread usage
Critical infrastructure that needs reliability testing