Codebase list ohcount / 4fa67836-5fea-4473-87e4-bd80a2d5b1ae/main test / unit / parsers / test_csharp.h
4fa67836-5fea-4473-87e4-bd80a2d5b1ae/main

Tree @4fa67836-5fea-4473-87e4-bd80a2d5b1ae/main (Download .tar.gz)

test_csharp.h @4fa67836-5fea-4473-87e4-bd80a2d5b1ae/main

3581673
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
void test_csharp_comments() {
  test_parser_verify_parse(
    test_parser_sourcefile("csharp", " //comment"),
    "csharp", "", "//comment", 0
  );
}

void test_csharp_comment_entities() {
  test_parser_verify_entity(
    test_parser_sourcefile("csharp", " //comment"),
    "comment", "//comment"
  );
  test_parser_verify_entity(
    test_parser_sourcefile("csharp", " /*comment*/"),
    "comment", "/*comment*/"
  );
}

void all_csharp_tests() {
  test_csharp_comments();
  test_csharp_comment_entities();
}