Codebase list ohcount / d4c3f612-6685-4dc0-9339-5433a0a275c0/main test / unit / parsers / test_logtalk.h
d4c3f612-6685-4dc0-9339-5433a0a275c0/main

Tree @d4c3f612-6685-4dc0-9339-5433a0a275c0/main (Download .tar.gz)

test_logtalk.h @d4c3f612-6685-4dc0-9339-5433a0a275c0/mainraw · history · blame

void test_logtalk_comments() {
  test_parser_verify_parse(
    test_parser_sourcefile("logtalk", " %comment"),
    "logtalk", "", "%comment", 0
  );
}

void test_logtalk_empty_comments() {
  test_parser_verify_parse(
    test_parser_sourcefile("logtalk", " %\n"),
    "logtalk", "", "%\n", 0
  );
}

void test_logtalk_block_comment() {
  test_parser_verify_parse(
    test_parser_sourcefile("logtalk", " /*d*/"),
    "logtalk", "", "/*d*/", 0
  );
}

void all_logtalk_tests() {
  test_logtalk_comments();
  test_logtalk_empty_comments();
  test_logtalk_block_comment();
}