コード例 #1
0
  @Test
  public void testStoreCustomer() {

    when(customerRepository.save(customer)).thenReturn(customer);

    customerService.storeCustomer(customer);
  }