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