Merge pull request #41 from blackducksw/ubuntu_14
[ohcount] / test / unit / parsers / test_automake.h
1
2 void test_automake_comment_entities() {
3   test_parser_verify_entity(
4     test_parser_sourcefile("automake", " #comment"),
5     "comment", "#comment"
6   );
7 }
8
9 void all_automake_tests() {
10   test_automake_comment_entities();
11 }