Skip to content
#

coverage

Here are 762 public repositories matching this topic...

jason0x43
jason0x43 commented Mar 11, 2020

Core functionality, such as the built in test interfaces and assertions, should be available to import through the base Intern export.

import { describe, it } from 'intern';
describe('something', () => { ... });

At least the test interfaces (object, bdd, tdd), assert, and expect should be exported. The implementer should also verify that the necessary types are exported

ndbroadbent
ndbroadbent commented Oct 14, 2019

Hello!

I think I've figured out a good way to get SimpleCov working with Spring. For my Rails application, preloading the app would require some classes in my ./app directory, and this would cause some inaccurate coverage to be reported (any lines that were required during preloading were missing in the coverage.) I figured out how to fix this issue by starting SimpleCov in config/spring.rb

ChristofferSkog21st
ChristofferSkog21st commented Mar 9, 2019

The features section in the docs states that nodemon is available in the project, when it's clearly not. It's not added as a dependency or as a command in the project. Maybe remove this from the docs or actually add nodemon?

IGx89
IGx89 commented Mar 7, 2020

Hello! The documentation appears to indicate that Format can be specified on the command line for the VSTest integration (see https://github.com/tonerdo/coverlet/blob/master/Documentation/VSTestIntegration.md#coverlet-options-supported-by-vstest-integration), but it provides no examples on how to do so and I've had zero luck figuring it out myself. Assuming that is indeed possible, would someone b

mutant
matthias-g
matthias-g commented Nov 18, 2018

In the following scenario, replacing the body of Child#one with super causes a SystemStackError when Child#one is being called. However mutant does not detect that this error kills the mutation that replaces the method's body with super. See https://github.com/matthias-g/mutant_super_bug for a running example.

class Parent
  attr_reader :foo

  def initialize(foo)
    @foo = fo
theofidry
theofidry commented Nov 26, 2019

Basically we need to choose between:

class X {

  private $foo;

  public function __construct(string $foo) {
    $this->foo = $foo;
  }

  public function getFoo(): string {
    return $this->foo;
  }
}

or:

class X {

  /**
   * @var string
   */
  private $foo;

  public function __construct(string $foo) {
    $this->foo = $foo;
  }

  public f
RFC
Timwi
Timwi commented Oct 25, 2019

Hello! I’ve looked at the Usage Guide (both the wiki page and the PDF) but neither of them explain how to get started. They both assume that the user already knows how to obtain and run OpenCover. I’ve added the OpenCover nuget package to my solution but I could not figure out how to go from there. The Usage Guide talks about a “console application” but there is no console application anywhere tha

notaphplover
notaphplover commented Mar 23, 2019

Hi, I've been using this library for sending a coverage report from a dockerized build hosted in Travis-CI.

At first I was unable to understand why coveralls.io builds had a coverage report but not a branch name nor a commit msg. At the end I had to read the library's code and this article to unders

blindpirate
blindpirate commented Dec 17, 2017

When building github.com/AsynkronIT/protoactor-go we got the following error:

vendor dependency golang.org/x/time:github.com/hashicorp/consul: commit='a86d11ec0aaadf6965014abd0030085d67454406', urls=[https://github.com/hashicorp/consul.git, git@github.com:hashicorp/consul.git]/vendor/golang.org/x/time/rate does not exist in transitive dependencies of github.com/hashicorp/consul#a86d11ec0
eugpermar
eugpermar commented May 23, 2018

Suites like gcov works well if I execute many binaries (or the same binary with different arguments) in parallel, does kcov support this too? In particular, I'm interested in bash coverage.

For example, to have two scripts that source common.sh, and I execute them in two different shells, will the common.sh merged reports be OK? If not, what parts of kcov should be modified to support it?

Th

Ram-Z
Ram-Z commented Dec 13, 2019

Currently when choosing any of the other output formats it's not possible to get the text report printed to stdout or even a file.

I've tried the following, but neither work.

$ gcovr --sonarqube coverage.xml --output
usage: gcovr [options] [search_paths...]
gcovr: error: argument -o/--output: expected one argument
$ gcovr --sonarqube coverage.xml --output -
(WARNING) --output='-' op
utPLSQL
wolframhaussig
wolframhaussig commented Mar 11, 2020

Is your feature request related to a problem? Please describe.
We have a database schema which includes temporary objects - this means objects which are required only for a short time like procedure for upgrades or objects which are still work in progress - and legacy test code. Temporary objects are always prefixed with the username of the author like:
windowsusr_my_table
Test Procedures a

risogolo
risogolo commented Aug 10, 2018

Since dotnetcore's behavior when testing entire solution is trying also test non testing projects and then whole process is evaluated as non successful at least on linux, then I need to run test on one by one testing project separately I need to somehow then merge altcover results into one xml file, is that possible?

Improve this page

Add a description, image, and links to the coverage topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the coverage topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.