2 void test_jsp_comment() {
3 test_parser_verify_parse2(
4 test_parser_sourcefile("jsp", " <% //comment\n%>"),
5 "java", "", "<% //comment\n", 0,
10 void test_jsp_comment_entities() {
11 test_parser_verify_entity(
12 test_parser_sourcefile("jsp", " <!--comment-->"),
13 "comment", "<!--comment-->"
15 test_parser_verify_entity(
16 test_parser_sourcefile("jsp", "<style type='text/css'>\n/*comment*/\n</style>"),
17 "comment", "/*comment*/"
19 test_parser_verify_entity(
20 test_parser_sourcefile("jsp", "<%\n//comment\n%>"),
21 "comment", "//comment"
23 test_parser_verify_entity(
24 test_parser_sourcefile("jsp", "<%\n/*comment*/\n%>"),
25 "comment", "/*comment*/"
29 void all_jsp_tests() {
30 test_jsp_comment_entities();