Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disallow more instructions at one line #6

Open
branoholy opened this issue Jul 23, 2016 · 0 comments
Open

Disallow more instructions at one line #6

branoholy opened this issue Jul 23, 2016 · 0 comments
Assignees
Milestone

Comments

@branoholy
Copy link
Owner

branoholy commented Jul 23, 2016

More instructions at one line are not correctly shown in the coverage results.

The line below is marked as tested even if the method is never called.

if(obj != nullptr) obj->method();

A split to more lines should correct it.

if(obj != nullptr)
    obj->method();

It is necessary to

  • change the beautifier settings,
  • reformat the source code,
  • check new coverage results.
@branoholy branoholy added this to the v2.5 milestone Jul 23, 2016
@branoholy branoholy self-assigned this Dec 20, 2016
@branoholy branoholy modified the milestones: v3.0, v2.5 Dec 20, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant