2 void test_bat_comments() {
3 test_parser_verify_parse(
4 test_parser_sourcefile("bat", " REM comment"),
5 "bat", "", "REM comment", 0
9 void test_bat_comment_entities() {
10 test_parser_verify_entity(
11 test_parser_sourcefile("bat", " rem comment"),
12 "comment", "rem comment"
16 void all_bat_tests() {
18 test_bat_comment_entities();