| 534 | |
| 535 | |
| 536 | class FakePersistentSharedKeys : public PersistentSharedKeys { |
| 537 | protected: |
| 538 | bool read() override {return _persistedData && loadFrom(_persistedData);} |
| 539 | void write(slice encodedData) override {_persistedData = encodedData;} |
| 540 | alloc_slice _persistedData; |
| 541 | }; |
| 542 | |
| 543 | |
| 544 | TEST_CASE("Encoding mutable array", "[Mutable]") { |
nothing calls this directly
no outgoing calls
no test coverage detected