Codebase list ohcount / debian/latest test / unit / parsers / test_make.h
debian/latest

Tree @debian/latest (Download .tar.gz)

test_make.h @debian/latestraw · history · blame

void test_make_comment_entities() {
  test_parser_verify_entity(
    test_parser_sourcefile("make", " #comment"),
    "comment", "#comment"
  );
}

void all_make_tests() {
  test_make_comment_entities();
}