Merge pull request #41 from blackducksw/ubuntu_14
[ohcount] / test / unit / parsers / test_autoconf.h
1
2 void test_autoconf_comment_entities() {
3   test_parser_verify_parse(
4     test_parser_sourcefile("autoconf", " dnl comment"),
5     "autoconf", "", "dnl comment", 0
6   );
7 }
8
9 void all_autoconf_tests() {
10   test_autoconf_comment_entities();
11 }