]> git.mxchange.org Git - juser-core.git/commit
Continued:
authorRoland Häder <roland@mxchange.org>
Sat, 12 Nov 2022 19:09:53 +0000 (20:09 +0100)
committerRoland Häder <roland@mxchange.org>
Sat, 12 Nov 2022 19:32:22 +0000 (20:32 +0100)
commit840ec3fb6cb0c3b89c7d0bb627cf204db6dd6288
tree96c8d9e8493b0914aff8fd5b3382680e7d4f6897
parent0d9639346e90fcbdf51ee061eb0181834d9b24d9
Continued:
- added unit test case for LoginUser class (only as a POJO)
- used new EnumUtils.compare() method to compare enumerations null-safe.
  Under normal conditions, this won't be the case. The only case (currently)
  happens that a NPE is being thrown when an "empty" LoginUser object is being
  compared with an object with all required fields set (those which are not
  null or optional)
- sorted members
- enumeration's constructors can have exceptions but they cannot be tested?
- ignored some files from TestNG
- updated jar(s)
.gitignore
lib/jcore-utils.jar
src/org/mxchange/jusercore/model/user/LoginUser.java
src/org/mxchange/jusercore/model/user/profilemodes/ProfileMode.java
src/org/mxchange/jusercore/model/user/status/UserAccountStatus.java
src/org/mxchange/jusercore/model/utils/UserUtils.java
test/org/mxchange/jusercore/model/UserTestData.java
test/org/mxchange/jusercore/model/user/LoginUserTest.java [new file with mode: 0644]
test/org/mxchange/jusercore/model/utils/UserUtilsTest.java