2 void test_factor_comments() {
3 test_parser_verify_parse(
4 test_parser_sourcefile("factor", " ! comment"),
5 "factor", "", "! comment", 0
9 void test_factor_strings() {
10 test_parser_verify_parse(
11 test_parser_sourcefile("factor", "\"abc!not a 'comment\""),
12 "factor", "\"abc!not a 'comment\"", "", 0
16 void all_factor_tests() {
17 test_factor_comments();
18 test_factor_strings();