| 9 | { |
| 10 | public: |
| 11 | Environment(int argc, char** argv) |
| 12 | { |
| 13 | if(argc >= 1) |
| 14 | { |
| 15 | executable_path = filesystem::path(argv[0]).make_absolute(); |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | // the absolute path to the test executable |
| 20 | filesystem::path executable_path{}; |
nothing calls this directly
no outgoing calls
no test coverage detected