Merge pull request #41 from blackducksw/ubuntu_14
[ohcount] / test / unit / parsers / test_pike.h
1
2 void test_pike_comments() {
3   test_parser_verify_parse(
4     test_parser_sourcefile("pike", " //comment"),
5     "pike", "", "//comment", 0
6   );
7 }
8
9 void test_pike_comment_entities() {
10   test_parser_verify_entity(
11     test_parser_sourcefile("pike", " //comment"),
12     "comment", "//comment"
13   );
14   test_parser_verify_entity(
15     test_parser_sourcefile("pike", " /*comment*/"),
16     "comment", "/*comment*/"
17   );
18 }
19
20 void all_pike_tests() {
21   test_pike_comments();
22   test_pike_comment_entities();
23 }