Merge pull request #41 from blackducksw/ubuntu_14
[ohcount] / test / unit / parsers / test_forth.h
1
2 void test_forth_comment_entities() {
3   test_parser_verify_entity(
4     test_parser_sourcefile("forth", " \\comment"),
5     "comment", "\\comment"
6   );
7   test_parser_verify_entity(
8     test_parser_sourcefile("forth", " (comment)"),
9     "comment", "(comment)"
10   );
11 }
12
13 void all_forth_tests() {
14   test_forth_comment_entities();
15 }