| 7 | |
| 8 | Y_UNIT_TEST_SUITE(TestEntropy) { |
| 9 | Y_UNIT_TEST(TestSeed) { |
| 10 | char buf[100]; |
| 11 | |
| 12 | for (size_t i = 0; i < sizeof(buf); ++i) { |
| 13 | Seed().LoadOrFail(buf, i); |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | Y_UNIT_TEST(TestReset) { |
| 18 | UNIT_ASSERT_NO_EXCEPTION(ResetEntropyPool()); |
nothing calls this directly
no test coverage detected