()
| 33 | } |
| 34 | |
| 35 | @Test |
| 36 | public void selectUserTest() throws Exception { |
| 37 | deleteAll(); |
| 38 | User user = new User("asdf2", "1234", "abc", "aaaa@aaa.com", new Date(), "fb", new Date()); |
| 39 | int rowCnt = insertUser(user); |
| 40 | User user2 = selectUser("asdf2"); |
| 41 | |
| 42 | assertTrue(user.getId().equals("asdf2")); |
| 43 | } |
| 44 | |
| 45 | @Test |
| 46 | public void deleteUserTest() throws Exception { |
nothing calls this directly
no test coverage detected