| 237 | class TestRootGuard { |
| 238 | public: |
| 239 | explicit TestRootGuard(const char* root) { |
| 240 | fl::setTestFileSystemRoot(root); |
| 241 | } |
| 242 | |
| 243 | ~TestRootGuard() { |
| 244 | fl::setTestFileSystemRoot(""); // Clear global state |
nothing calls this directly
no test coverage detected