Helper function to set up filesystem for codec tests
| 8 | |
| 9 | // Helper function to set up filesystem for codec tests |
| 10 | static fl::FileSystem setupCodecFilesystem_jpeg() { |
| 11 | fl::setTestFileSystemRoot("tests"); |
| 12 | fl::FileSystem fs; |
| 13 | bool ok = fs.beginSd(5); |
| 14 | FL_REQUIRE(ok); |
| 15 | return fs; |
| 16 | } |
| 17 | |
| 18 | FL_TEST_CASE("JPEG file loading and decoding") { |
| 19 | fl::FileSystem fs = setupCodecFilesystem_jpeg(); |
no test coverage detected