()
| 670 | |
| 671 | #[test] |
| 672 | fn test_cpp_extensions() { |
| 673 | let extractor = CppExtractor; |
| 674 | let exts = extractor.extensions(); |
| 675 | assert!(exts.contains(&"cpp")); |
| 676 | assert!(exts.contains(&"cc")); |
| 677 | assert!(exts.contains(&"cxx")); |
| 678 | assert!(exts.contains(&"hpp")); |
| 679 | assert!(exts.contains(&"hxx")); |
| 680 | assert!(exts.contains(&"hh")); |
| 681 | } |
| 682 | |
| 683 | #[test] |
| 684 | fn test_cpp_language_name() { |
nothing calls this directly
no test coverage detected