@Test public void shouldSave() throws Exception { EquipmentEnergyType type = new EquipmentEnergyType(); type.setName("Test"); controller.save(type); verify(service).save(type); }
@Test public void shouldGetById() throws Exception { EquipmentEnergyType type = new EquipmentEnergyType(); type.setName("Test"); when(service.getById(1L)).thenReturn(type); controller.getById(1L); verify(service).getById(1L); }
@Test public void shouldGetAll() throws Exception { controller.getAll(); verify(service).getAll(); }