2 void test_dcl_comments() {
3 test_parser_verify_parse(
4 test_parser_sourcefile("dcl", "$!comment"),
5 "dcl", "", "$!comment", 0
10 test_parser_verify_parse(
11 test_parser_sourcefile("dcl", "$code"),
16 void test_dcl_blank() {
17 test_parser_verify_parse(
18 test_parser_sourcefile("dcl", "\n"),
23 void test_dcl_input_line() {
24 test_parser_verify_parse(
25 test_parser_sourcefile("dcl", "input"),
30 void test_dcl_comment_entities() {
31 test_parser_verify_entity(
32 test_parser_sourcefile("dcl", " !comment"),
37 void all_dcl_tests() {
41 test_dcl_input_line();
42 test_dcl_comment_entities();