Spring Boot testing coverage - cover return Gson statementHow to configure port for a Spring Boot applicationHow to log SQL statements in Spring Boot?Spring Boot - Custom JSON SerializationSpringApplicationConfiguration not found: Erroneous spring-boot-starter-test content?Integration test with spring bootSpring Boot, Global Exception Handling and TestingSpring Boot serialize parameteried type into JSON with type idSpring boot: @ConfigurationProperties not satisfied on testTestRestTemplate throws exception for 4xx status codesHow to detect PathVariable errors in the CI pipeline?

Credit card details stolen every 1-2 years. What am I doing wrong?

What happens on Day 6?

What powers the air required for pneumatic brakes in aircraft?

How to say no to more work as a PhD student so I can graduate

Why alcohol had been selected as fuel for the first American space rockets?

Is it OK to use personal email ID for faculty job applications or should we use (current) institute's ID

Do I need a 50/60Hz notch filter for battery powered devices?

Can "plane" (aeroplane) be used as a non-count noun?

Why did Steve Rogers choose this character in Endgame?

(Piano) is the purpose of sheet music to be played along to? Or a guide for learning and reference during playing?

Why do so many pure math PhD students drop out or leave academia, compared to applied mathematics PhDs?

Strategy to pay off revolving debt while building reserve savings fund?

Unix chat server making communication between terminals possible

What impact would a dragon the size of Asia have on the environment?

Kepler space telescope planets detection

Is there a source that says only 1/5th of the Jews will make it past the messiah?

Is it ethical for a company to ask its employees to move furniture on a weekend?

Is there a standard way of referencing line numbers in a draft?

Is it rude to refer to janitors as 'floor people'?

Is this artwork (used in a video game) real?

What made Windows ME so crash-prone?

Alphanumeric Line and Curve Counting

What happens if there is no space for entry stamp in the passport for US visa?

Finding the package which provides a given command



Spring Boot testing coverage - cover return Gson statement


How to configure port for a Spring Boot applicationHow to log SQL statements in Spring Boot?Spring Boot - Custom JSON SerializationSpringApplicationConfiguration not found: Erroneous spring-boot-starter-test content?Integration test with spring bootSpring Boot, Global Exception Handling and TestingSpring Boot serialize parameteried type into JSON with type idSpring boot: @ConfigurationProperties not satisfied on testTestRestTemplate throws exception for 4xx status codesHow to detect PathVariable errors in the CI pipeline?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I have a Spring Boot project that I'm testing and I have this get method in the controller:



 @GetMapping("/updatecrime/id")
public String updateCrime(@PathVariable Long id)
Crime oldCrime = new Crime(id);
this.service.addCrime(id, oldCrime);
Crime newCrime = new Crime(oldCrime.getId(), oldCrime.getZipCode(), oldCrime.getTotPopulation(),
oldCrime.getMedianAge(), oldCrime.getTotMales(), 10, oldCrime.getTotHouseholds(),
oldCrime.getAvgHouseholdSize());
return new Gson().toJson(this.service.updateCrime(id, oldCrime, newCrime));



I checked the coverage of my tests and all this method is covered expected for this last line:



return new Gson().toJson(this.service.updateCrime(id, oldCrime, newCrime))


What kind of assert do I need to cover this? This is my test for the method:



this.objectMapper = new ObjectMapper();
try
ResultActions resultActions = this.mvc
.perform(MockMvcRequestBuilders.get("/updatecrime/5"));
MvcResult result = resultActions.andReturn();

String contentString = result.getResponse().getContentAsString();
Crime crime = objectMapper.readValue(contentString, Crime.class);
assertTrue(crime.getTotFemales() == 10);
catch (Exception e)
e.printStackTrace();










share|improve this question




























    0















    I have a Spring Boot project that I'm testing and I have this get method in the controller:



     @GetMapping("/updatecrime/id")
    public String updateCrime(@PathVariable Long id)
    Crime oldCrime = new Crime(id);
    this.service.addCrime(id, oldCrime);
    Crime newCrime = new Crime(oldCrime.getId(), oldCrime.getZipCode(), oldCrime.getTotPopulation(),
    oldCrime.getMedianAge(), oldCrime.getTotMales(), 10, oldCrime.getTotHouseholds(),
    oldCrime.getAvgHouseholdSize());
    return new Gson().toJson(this.service.updateCrime(id, oldCrime, newCrime));



    I checked the coverage of my tests and all this method is covered expected for this last line:



    return new Gson().toJson(this.service.updateCrime(id, oldCrime, newCrime))


    What kind of assert do I need to cover this? This is my test for the method:



    this.objectMapper = new ObjectMapper();
    try
    ResultActions resultActions = this.mvc
    .perform(MockMvcRequestBuilders.get("/updatecrime/5"));
    MvcResult result = resultActions.andReturn();

    String contentString = result.getResponse().getContentAsString();
    Crime crime = objectMapper.readValue(contentString, Crime.class);
    assertTrue(crime.getTotFemales() == 10);
    catch (Exception e)
    e.printStackTrace();










    share|improve this question
























      0












      0








      0








      I have a Spring Boot project that I'm testing and I have this get method in the controller:



       @GetMapping("/updatecrime/id")
      public String updateCrime(@PathVariable Long id)
      Crime oldCrime = new Crime(id);
      this.service.addCrime(id, oldCrime);
      Crime newCrime = new Crime(oldCrime.getId(), oldCrime.getZipCode(), oldCrime.getTotPopulation(),
      oldCrime.getMedianAge(), oldCrime.getTotMales(), 10, oldCrime.getTotHouseholds(),
      oldCrime.getAvgHouseholdSize());
      return new Gson().toJson(this.service.updateCrime(id, oldCrime, newCrime));



      I checked the coverage of my tests and all this method is covered expected for this last line:



      return new Gson().toJson(this.service.updateCrime(id, oldCrime, newCrime))


      What kind of assert do I need to cover this? This is my test for the method:



      this.objectMapper = new ObjectMapper();
      try
      ResultActions resultActions = this.mvc
      .perform(MockMvcRequestBuilders.get("/updatecrime/5"));
      MvcResult result = resultActions.andReturn();

      String contentString = result.getResponse().getContentAsString();
      Crime crime = objectMapper.readValue(contentString, Crime.class);
      assertTrue(crime.getTotFemales() == 10);
      catch (Exception e)
      e.printStackTrace();










      share|improve this question














      I have a Spring Boot project that I'm testing and I have this get method in the controller:



       @GetMapping("/updatecrime/id")
      public String updateCrime(@PathVariable Long id)
      Crime oldCrime = new Crime(id);
      this.service.addCrime(id, oldCrime);
      Crime newCrime = new Crime(oldCrime.getId(), oldCrime.getZipCode(), oldCrime.getTotPopulation(),
      oldCrime.getMedianAge(), oldCrime.getTotMales(), 10, oldCrime.getTotHouseholds(),
      oldCrime.getAvgHouseholdSize());
      return new Gson().toJson(this.service.updateCrime(id, oldCrime, newCrime));



      I checked the coverage of my tests and all this method is covered expected for this last line:



      return new Gson().toJson(this.service.updateCrime(id, oldCrime, newCrime))


      What kind of assert do I need to cover this? This is my test for the method:



      this.objectMapper = new ObjectMapper();
      try
      ResultActions resultActions = this.mvc
      .perform(MockMvcRequestBuilders.get("/updatecrime/5"));
      MvcResult result = resultActions.andReturn();

      String contentString = result.getResponse().getContentAsString();
      Crime crime = objectMapper.readValue(contentString, Crime.class);
      assertTrue(crime.getTotFemales() == 10);
      catch (Exception e)
      e.printStackTrace();







      spring-boot testing spring-boot-test






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 26 at 8:16









      DseasterDseaster

      6482 gold badges11 silver badges24 bronze badges




      6482 gold badges11 silver badges24 bronze badges






















          0






          active

          oldest

          votes










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55352542%2fspring-boot-testing-coverage-cover-return-gson-statement%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes




          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55352542%2fspring-boot-testing-coverage-cover-return-gson-statement%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript