use of com.example.helloworld.core.Person in project dropwizard by dropwizard.
the class PersonResourceTest method setup.
@Before
public void setup() {
person = new Person();
person.setId(1L);
}
use of com.example.helloworld.core.Person in project dropwizard by dropwizard.
the class PersonResourceTest method getPersonSuccess.
@Test
public void getPersonSuccess() {
when(DAO.findById(1L)).thenReturn(Optional.of(person));
Person found = RULE.target("/people/1").request().get(Person.class);
assertThat(found.getId()).isEqualTo(person.getId());
verify(DAO).findById(1L);
}