<legend id='4lJuD'><style id='4lJuD'><dir id='4lJuD'><q id='4lJuD'></q></dir></style></legend>

<small id='4lJuD'></small><noframes id='4lJuD'>

      • <bdo id='4lJuD'></bdo><ul id='4lJuD'></ul>

      <tfoot id='4lJuD'></tfoot>
    1. <i id='4lJuD'><tr id='4lJuD'><dt id='4lJuD'><q id='4lJuD'><span id='4lJuD'><b id='4lJuD'><form id='4lJuD'><ins id='4lJuD'></ins><ul id='4lJuD'></ul><sub id='4lJuD'></sub></form><legend id='4lJuD'></legend><bdo id='4lJuD'><pre id='4lJuD'><center id='4lJuD'></center></pre></bdo></b><th id='4lJuD'></th></span></q></dt></tr></i><div id='4lJuD'><tfoot id='4lJuD'></tfoot><dl id='4lJuD'><fieldset id='4lJuD'></fieldset></dl></div>
    2. 如何测试更新方法?

      时间:2023-09-25
      <legend id='GUMWL'><style id='GUMWL'><dir id='GUMWL'><q id='GUMWL'></q></dir></style></legend>

      <small id='GUMWL'></small><noframes id='GUMWL'>

            1. <i id='GUMWL'><tr id='GUMWL'><dt id='GUMWL'><q id='GUMWL'><span id='GUMWL'><b id='GUMWL'><form id='GUMWL'><ins id='GUMWL'></ins><ul id='GUMWL'></ul><sub id='GUMWL'></sub></form><legend id='GUMWL'></legend><bdo id='GUMWL'><pre id='GUMWL'><center id='GUMWL'></center></pre></bdo></b><th id='GUMWL'></th></span></q></dt></tr></i><div id='GUMWL'><tfoot id='GUMWL'></tfoot><dl id='GUMWL'><fieldset id='GUMWL'></fieldset></dl></div>
                <bdo id='GUMWL'></bdo><ul id='GUMWL'></ul>

                  <tbody id='GUMWL'></tbody>
              • <tfoot id='GUMWL'></tfoot>
                本文介绍了如何测试更新方法?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                我是单元测试新手,在我的 Java (Spring Boot) 应用程序中使用 JUnit.我有时需要测试更新方法,但是当我在网上搜索时,没有合适的示例或建议.那么,您能否澄清一下如何测试以下更新方法?我认为这可能需要与测试 void 不同的方法.我还认为,在测试时首先模拟记录,然后更新其字段,然后更新.最后再次检索记录并比较更新的属性.但我认为可能有比这个没有经验的方法更合适的方法.

                I am new in unit testing and use JUnit in my Java (Spring Boot) app. I sometimes need to test update methods, but when I search on the web, there is not a proper example or suggestion. So, could you please clarify me how to test the following update method? I think this may require a different approach than testing void. I also thought that while testing first mocking the record and then update its field and then update. Finally retrieve the record again and compare the updated properties. But I think there may be more proper approach than this inexperienced one.

                public PriceDTO update(UUID priceUuid, PriceRequest request) {
                    Price price = priceRepository
                                    .findByUuid(priceUuid)
                                    .orElseThrow(() -> new EntityNotFoundException(PRICE));
                
                    mapRequestToEntity(request, price);
                    Price updated = priceRepository.saveAndFlush(price);
                    
                    return new PriceDTO(updated);
                }
                
                private void mapRequestToEntity(PriceRequest request, Price entity) {
                    entity.setPriceAmount(request.getPriceAmount());
                    // set other props
                }
                

                推荐答案

                您需要按照以下方式做一些事情:

                You would need to do something along the following lines:

                public class ServiceTest {
                
                    @Mock
                    private PriceRepository priceRepository;
                
                    (...)
                
                    @Test
                    public void shouldUpdatePrice() throws Exception {
                        // Arrange
                        UUID priceUuid = // build the Price UUID
                        PriceRequest priceUpdateRequest = // build the Price update request
                        Price originalPrice = // build the original Price  
                        doReturn(originalPrice).when(this.priceRepository).findByUuid(isA(UUID.class));
                        doAnswer(AdditionalAnswers.returnsFirstArg()).when(this.priceRepository).saveAndFlush(isA(Price.class));
                
                        // Act
                        PriceDTO updatedPrice = this.service.update(priceUuid, priceUpdateRequest);
                
                        // Assert
                        // here you need to assert that updatedPrice is as you expect according to originalPrice and priceUpdateRequest
                    }
                }
                

                这篇关于如何测试更新方法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:无法监视 HttpSession/Mockito 下一篇:为什么模拟不能与 AsyncTask 一起工作?

                相关文章

                最新文章

              • <tfoot id='NEkql'></tfoot>

                <small id='NEkql'></small><noframes id='NEkql'>

                  <bdo id='NEkql'></bdo><ul id='NEkql'></ul>
              • <legend id='NEkql'><style id='NEkql'><dir id='NEkql'><q id='NEkql'></q></dir></style></legend>

                  <i id='NEkql'><tr id='NEkql'><dt id='NEkql'><q id='NEkql'><span id='NEkql'><b id='NEkql'><form id='NEkql'><ins id='NEkql'></ins><ul id='NEkql'></ul><sub id='NEkql'></sub></form><legend id='NEkql'></legend><bdo id='NEkql'><pre id='NEkql'><center id='NEkql'></center></pre></bdo></b><th id='NEkql'></th></span></q></dt></tr></i><div id='NEkql'><tfoot id='NEkql'></tfoot><dl id='NEkql'><fieldset id='NEkql'></fieldset></dl></div>