2 void test_cmake_comments() {
3 test_parser_verify_parse(
4 test_parser_sourcefile("cmake", " #comment"),
5 "cmake", "", "#comment", 0
9 void test_cmake_empty_comments() {
10 test_parser_verify_parse(
11 test_parser_sourcefile("cmake", " #\n"),
16 void test_cmake_comment_entities() {
17 test_parser_verify_entity(
18 test_parser_sourcefile("cmake", " #comment"),
23 void all_cmake_tests() {
24 test_cmake_comments();
25 test_cmake_empty_comments();
26 test_cmake_comment_entities();