vstest VS Fine Code Coverage

Compare vstest vs Fine Code Coverage and see what are their differences.

vstest

Visual Studio Test Platform is the runner and engine that powers test explorer and vstest.console. (by microsoft)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
vstest Fine Code Coverage
5 1
858 490
1.9% -
9.5 9.4
5 days ago about 2 months ago
C# C#
MIT License GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

vstest

Posts with mentions or reviews of vstest. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-06-14.
  • Pressing CTRL+C while reading user input (Console.ReadLine) has a weird issue.
    1 project | /r/csharp | 22 Jun 2022
    Another commenter in your first post linked you to a bug report. The original bug was a sporadic one with dotnet test. But commenters added more reliable cases, and cases for other dotnet commands.
  • Why does VSTest put the output of data collectors to GUIDed subdirectories?
    2 projects | /r/dotnet | 14 Jun 2022
    However, I am hesitant to do so. Whenever it seems I have to fight the tools that are provided for me this is a likely sign that I’m Doing Things Wrong because of some fundamental misunderstandings and misassumptions on my part. I did some digging and found that VSTest by design forces the placement of data collectors’ output into GUIDed subdirectories, see Coverlet documentation, Coverlet issue #500 and VSTest issue #2378. That this is forced by design reinforces my worries that I’m doing something counterproductive.
  • Integrating VSTest
    3 projects | /r/dotnet | 7 May 2022
    I've had success creating my own logger by following this guide on the vsdocs github. Nowadays you don't have to deploy the assemblies for the custom logger to the vs install folders. vstest will scan the build output directory for assemblies that match the specified pattern, *.testlogger.dll. You can also specify the path for custom test adapters either from the command line or a runsettings file using the TestAdapterPath option (this is only available since v15.1 but you mentioned you've tried the html logger and I think that's much newer than v15.1). If you get stuck with the implementation you can try referring to vstest's own loggers: htmllogger, trxlogger.
  • Pick your class
    1 project | /r/ProgrammerHumor | 26 Jan 2022
    IMO it's just held back by its ecosystem. NuGet doesn't integrate nearly as well with library source as Maven/Gradle/etc, and stuff like this makes it feel like a second-class citizen for CI.
  • Banging my head against a wall, any one here ever get intimate with Microsfot.NET.Test.SDK?
    1 project | /r/csharp | 11 Jan 2022
    But going to have to dig in deep tonight, it seems that answer to what I seek is probably hidden somewhere in this repo: https://github.com/microsoft/vstest/ and the ITestDiscovery discovery process.

Fine Code Coverage

Posts with mentions or reviews of Fine Code Coverage. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-03-07.
  • C# development tools
    2 projects | /r/csharp | 7 Mar 2022
    If you start writing unit tests, I highly recommend Fine Code Coverage to see what percentage of your code has been reached by the existing unit tests: https://github.com/FortuneN/FineCodeCoverage