2 void test_stratego_comments() {
3 test_parser_verify_parse(
4 test_parser_sourcefile("stratego", " // comment"),
5 "stratego", "", "// comment", 0
9 void test_stratego_char_string_entities() {
10 test_parser_verify_entity(
11 test_parser_sourcefile("stratego", " 'c'"),
14 // single quote can be used in identifiers
16 test_parser_verify_entity(
17 test_parser_sourcefile("stratego", " c'"),
21 test_parser_verify_entity(
22 test_parser_sourcefile("stratego", " c' = e'"),
27 void all_stratego_tests() {
28 test_stratego_comments();
29 test_stratego_char_string_entities();