Skip to content
#

mutation

Here are 115 public repositories matching this topic...

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
echebbi
echebbi commented Feb 17, 2020

Bug description

SonarCloud always report 0% coverage

Expected behavior

SonarCloud should report the right coverage.

How to reproduce

Build an internal branch/PR on Travis CI.

Additional context

It looks like Sonar team has deprecated usage of JaCoCo's .exec files and doesn't take them into account anymore. [Here](https://community.sonarsource.com/t/coverage-test-

Improve this page

Add a description, image, and links to the mutation 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 mutation topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.