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