| 456 | } |
| 457 | |
| 458 | static BytesView makeBytes(std::initializer_list<Byte> data) { |
| 459 | auto output = makeShared<ByteBuffer>(); |
| 460 | output->set(data); |
| 461 | |
| 462 | return output->toBytesView(); |
| 463 | } |
| 464 | |
| 465 | // Sanity checks since the updateSequence is used in the tests above |
| 466 | TEST(InMemoryKeychain, increaseSequenceWhenUpdated) { |
no test coverage detected