1 void test_brainfuck_comment() {
2 test_parser_verify_parse(
3 test_parser_sourcefile("brainfuck", " #comment"),
4 "brainfuck", "", "#comment", 0
8 void test_brainfuck_comment_entities() {
9 test_parser_verify_entity(
10 test_parser_sourcefile("brainfuck", " #comment"),
11 "#comment", "#comment"
15 void all_brainfuck_tests() {
16 test_brainfuck_comment();
17 test_brainfuck_comment_entities();