| 60 | } // namespace |
| 61 | |
| 62 | TEST(TestRandom, Seed) { |
| 63 | const int kCount = 100000; |
| 64 | auto random_options = RandomOptions::FromSeed(/*seed=*/0); |
| 65 | TestRandomWithOptions(kCount, random_options); |
| 66 | } |
| 67 | |
| 68 | TEST(TestRandom, SystemRandom) { |
| 69 | const int kCount = 100000; |
nothing calls this directly
no test coverage detected