assertThat(users.get(0).getName(), is("John"));
}
@Test
public void addingAValidUserWillHappenWithoutErrors() throws Exception {
User user = new User();
user.setLogin("mylogin");
user.setPassword("myPassword");
user.setName("Testing");
ifTheUserWithThisLoginDoesntExist("mylogin");
willAddTheUser(user);
controller.add(user);