diff options
author | Tyler Ferrari <69283684+Sowgro@users.noreply.github.com> | 2025-03-17 16:44:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-17 16:44:16 -0400 |
commit | ed3d0e5e5f9c58c3926ea55a422212f4da1c8849 (patch) | |
tree | a33f760bb831c948ebf1844ca52d7625ca7f6fe7 /ufund-api/src/test/java/com/ufund/api/ufundapi/persistence/UserFileDAOTest.java | |
parent | 9baaa0590fbc38c06d530786a1de804ee9edd7db (diff) | |
parent | 0377515c685b3ced5f67ae6d2ffee22893943acb (diff) | |
download | JellySolutions-ed3d0e5e5f9c58c3926ea55a422212f4da1c8849.tar.gz JellySolutions-ed3d0e5e5f9c58c3926ea55a422212f4da1c8849.tar.bz2 JellySolutions-ed3d0e5e5f9c58c3926ea55a422212f4da1c8849.zip |
Merge pull request #9 from RIT-SWEN-261-02/service-tests
service-tests merge
Diffstat (limited to 'ufund-api/src/test/java/com/ufund/api/ufundapi/persistence/UserFileDAOTest.java')
-rw-r--r-- | ufund-api/src/test/java/com/ufund/api/ufundapi/persistence/UserFileDAOTest.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ufund-api/src/test/java/com/ufund/api/ufundapi/persistence/UserFileDAOTest.java b/ufund-api/src/test/java/com/ufund/api/ufundapi/persistence/UserFileDAOTest.java index b802669..9361188 100644 --- a/ufund-api/src/test/java/com/ufund/api/ufundapi/persistence/UserFileDAOTest.java +++ b/ufund-api/src/test/java/com/ufund/api/ufundapi/persistence/UserFileDAOTest.java @@ -27,9 +27,9 @@ public class UserFileDAOTest { public void setupHeroFileDAO() throws IOException { mockObjectMapper = mock(ObjectMapper.class); testUsers = new User[3]; - testUsers[0] = new User("bob"); - testUsers[1] = new User("admin"); - testUsers[2] = new User("jelly12"); + testUsers[0] = User.create("bob", "pass"); + testUsers[1] = User.create("admin", "pass"); + testUsers[2] = User.create("jelly12", "pass"); // When the object mapper is supposed to read from the file // the mock object mapper will return the hero array above @@ -75,7 +75,7 @@ public class UserFileDAOTest { @Test public void createUserTest() throws IOException { - User newUser = new User("keshey"); + User newUser = User.create("keshey", "pass"); userFileDAO.addUser(newUser); User actualUser = userFileDAO.getUser("keshey"); |