Merge pull request #41 from blackducksw/ubuntu_14
[ohcount] / test / unit / parsers / test_fortran.h
1
2 void test_fortran_comment_entities() {
3   test_parser_verify_entity(
4     test_parser_sourcefile("fortranfree", " !comment"),
5     "comment", "!comment"
6   );
7   test_parser_verify_entity(
8     test_parser_sourcefile("fortranfixed", "C comment"),
9     "comment", "C comment"
10   );
11 }
12
13 void all_fortran_tests() {
14   test_fortran_comment_entities();
15 }