Merge pull request #41 from blackducksw/ubuntu_14
[ohcount] / test / unit / parsers / test_vb_aspx.h
1
2 void test_vb_aspx_comment() {
3   test_parser_verify_parse2(
4     test_parser_sourcefile("vb_aspx", "<%\n 'comment\n%>"),
5     "html", "<%\n%>", "", 0,
6     "visualbasic", "", "'comment\n", 0
7   );
8 }
9
10 void all_vb_aspx_tests() {
11   test_vb_aspx_comment();
12 }