Unit tests hide unused functions
In CLion normally when coding, CLion will point out if a method or function you wrote goes unused. However if you write googletests, the google test counts as implementing the function. This falsely flags the function as used even if it's never called in the main code.
How do you remove the testing folder from consideration when checking if a function is used or not?
Please sign in to leave a comment.