()
| 24 | DataSource ds; |
| 25 | |
| 26 | @Test |
| 27 | public void insertUserTest() throws Exception { |
| 28 | User user = new User("asdf2", "1234", "abc", "aaaa@aaa.com", new Date(), "fb", new Date()); |
| 29 | deleteAll(); |
| 30 | int rowCnt = insertUser(user); |
| 31 | |
| 32 | assertTrue(rowCnt==1); |
| 33 | } |
| 34 | |
| 35 | @Test |
| 36 | public void selectUserTest() throws Exception { |
nothing calls this directly
no test coverage detected