diff options
| author | Gunther6070 <haydenhartman10@yahoo.com> | 2025-03-17 14:20:43 -0400 | 
|---|---|---|
| committer | Gunther6070 <haydenhartman10@yahoo.com> | 2025-03-17 14:20:43 -0400 | 
| commit | 7acedfb955d800c806b8b59dc7261c53a6ec15d9 (patch) | |
| tree | 82f76bd3f538a3a692536dbb880396dc4f96d294 | |
| parent | b3f78d32b15120b6b4db83b9a7f94242de5a2533 (diff) | |
| download | JellySolutions-7acedfb955d800c806b8b59dc7261c53a6ec15d9.tar.gz JellySolutions-7acedfb955d800c806b8b59dc7261c53a6ec15d9.tar.bz2 JellySolutions-7acedfb955d800c806b8b59dc7261c53a6ec15d9.zip  | |
Modified imports
| -rw-r--r-- | ufund-api/src/test/java/com/ufund/api/ufundapi/controller/UserControllerTest.java | 8 | 
1 files changed, 1 insertions, 7 deletions
diff --git a/ufund-api/src/test/java/com/ufund/api/ufundapi/controller/UserControllerTest.java b/ufund-api/src/test/java/com/ufund/api/ufundapi/controller/UserControllerTest.java index e2c959a..efe639e 100644 --- a/ufund-api/src/test/java/com/ufund/api/ufundapi/controller/UserControllerTest.java +++ b/ufund-api/src/test/java/com/ufund/api/ufundapi/controller/UserControllerTest.java @@ -5,11 +5,10 @@ import java.util.Map;  import static java.util.Map.entry;  import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNotNull;  import org.junit.jupiter.api.BeforeEach;  import org.junit.jupiter.api.Tag;  import org.junit.jupiter.api.Test; - -import static org.junit.jupiter.api.Assertions.assertNotNull;  import static org.mockito.Mockito.doThrow;  import static org.mockito.Mockito.mock;  import static org.mockito.Mockito.when; @@ -85,11 +84,6 @@ public class UserControllerTest {          assertEquals(HttpStatus.INTERNAL_SERVER_ERROR, response.getStatusCode());      } -    /***************************************************************** -     * The following tests will fail until all userController methods -     * are implemented. -     ****************************************************************/ -      @Test      public void testCreateUser() throws IOException, DuplicateKeyException { // createUser may throw IOException          // Setup  | 
