| 612 | } |
| 613 | |
| 614 | void lineNumber() { |
| 615 | check("void foo();\n" |
| 616 | "void bar() {}\n" |
| 617 | "int main() {}"); |
| 618 | ASSERT_EQUALS("[test.cpp:2:6]: (style) The function 'bar' is never used. [unusedFunction]\n", errout_str()); |
| 619 | } |
| 620 | |
| 621 | void ignore_declaration() { |
| 622 | check("void f();\n" |
no outgoing calls
no test coverage detected