2 void test_objective_j_comments() {
3 test_parser_verify_parse(
4 test_parser_sourcefile("objective_j", " //comment"),
5 "objective_j", "", "//comment", 0
9 void test_objective_j_comment_entities() {
10 test_parser_verify_entity(
11 test_parser_sourcefile("objective_j", " //comment"),
12 "comment", "//comment"
14 test_parser_verify_entity(
15 test_parser_sourcefile("objective_j", " /*comment*/"),
16 "comment", "/*comment*/"
20 void all_objective_j_tests() {
21 test_objective_j_comments();
22 test_objective_j_comment_entities();