About 99,000 results
Open links in new tab
  1. What is code coverage and how do YOU measure it? [closed]

    Oct 12, 2008 · Code coverage is a measurement of how many lines/blocks/arcs of your code are executed while the automated tests are running. Code coverage is collected by using a specialized …

  2. What is a reasonable code coverage % for unit tests (and why)?

    If you were to mandate a minimum percentage code-coverage for unit tests, perhaps even as a requirement for committing to a repository, what would it be? Please explain how you arrived at your …

  3. How do code coverage tools work? - Stack Overflow

    Jun 16, 2010 · How do code coverage tools like NCover know what parts of the code were executed and what parts were not?

  4. How to get Code Coverage from Unit Tests in Visual Studio 2022 ...

    Dec 12, 2021 · I've downloaded the latest VS2022 v17.1 Community Edition and it doesn't come with Code Coverage built-in. I'm accustomed to the Enterprise Edition and all I can find is paid options for …

  5. How to see code coverage result in Visual Studio 2022 professional

    Nov 30, 2022 · 7 I would suggest Fine code coverage extension. Navigate to Extensions -> Manage extension and type Fine code coverage in Search control on the top of the right: After installing …

  6. "Code Coverage Results" Missing in Visual Studio - Stack Overflow

    Jun 28, 2024 · I don't believe this native option exists in Visual Studio. I recommend using a "Run coverlet report vs2022" extension. After installation it will be available in the following path tools -> …

  7. Usage of Fine Code Coverage in Visual Studio 2022 Community Edition

    Jan 25, 2023 · I've installed the extension Fine Code Coverage (Version 1.1.191) in Visual Studio 2022 Community Edition. I got a few xUnit test-projects in my solution. I'm getting the coverage statistics …

  8. How to get the code coverage report using Jest? - Stack Overflow

    Mar 19, 2019 · When using Jest 21.2.1, I can see code coverage at the command line and create a coverage directory by passing --coverage to the Jest script. Below are some examples: I tend to …

  9. Setting up properly SonarQube for Code Coverage - Stack Overflow

    Setting up properly SonarQube for Code Coverage Asked 6 years ago Modified 3 years, 3 months ago Viewed 68k times

  10. code coverage - C# 9/10 top-level statements and ...

    Apr 26, 2022 · Since C# 10 the top-level statement generation was changed and now you can add partial Program class to the end of top-level statement (or in separate file) and add attribute to it: