| 11 | } |
| 12 | |
| 13 | static void write_file(const std::string& path, const std::string& content) { |
| 14 | std::ofstream(path, std::ios::binary) << content; |
| 15 | } |
| 16 | |
| 17 | static bool expect_init_fails(const std::string& path) { |
| 18 | cactus_model_t model = cactus_init(path.c_str(), nullptr, false); |
no outgoing calls
no test coverage detected