| 18 | #include <iostream> |
| 19 | |
| 20 | static int testNoFile() |
| 21 | { |
| 22 | kwsys::ifstream in_file("NoSuchFile.txt"); |
| 23 | if (in_file) { |
| 24 | return 1; |
| 25 | } |
| 26 | |
| 27 | return 0; |
| 28 | } |
| 29 | |
| 30 | static int const num_test_files = 7; |
| 31 | static int const max_test_file_size = 45; |
no outgoing calls
no test coverage detected
searching dependent graphs…