Merge pull request #41 from blackducksw/ubuntu_14
[ohcount] / test / unit / parsers / test_bfpp.h
1 void test_bfpp_comment() {
2   test_parser_verify_parse(
3     test_parser_sourcefile("bfpp", " = comment"),
4     "bfpp", "", "= comment", 0
5   );
6 }
7
8 void test_bfpp_comment_entities() {
9   test_parser_verify_entity(
10     test_parser_sourcefile("bfpp", " = comment"),
11     " comment", "= comment"
12   );
13 }
14
15 void all_bfpp_tests() {
16   test_bfpp_comment();
17   test_bfpp_comment_entities();
18 }
19