| 5 | #include <gtest/gtest.h> |
| 6 | |
| 7 | TEST(SecureRandom, Fill) |
| 8 | { |
| 9 | unsigned int Bits = 0; |
| 10 | while(~Bits) |
| 11 | { |
| 12 | unsigned int Random; |
| 13 | secure_random_fill(&Random, sizeof(Random)); |
| 14 | Bits |= Random; |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | TEST(SecureRandom, Below1) |
| 19 | { |
nothing calls this directly
no test coverage detected