()
| 20 | } |
| 21 | |
| 22 | public User newUser() throws IOException { |
| 23 | String id = Identifiers.random(); |
| 24 | User user = new User(id); |
| 25 | String name = randomName(); |
| 26 | user.setName(name); |
| 27 | model.saveUser(user); |
| 28 | return user; |
| 29 | } |
| 30 | |
| 31 | public User newUser(String name) throws IOException { |
| 32 | String id = Identifiers.random(); |
nothing calls this directly
no test coverage detected