| 52 | }; |
| 53 | |
| 54 | TEST(Prng, EqualsPcg32GlobalDemo) |
| 55 | { |
| 56 | uint64_t aSeed[2] = {42, 54}; |
| 57 | |
| 58 | CPrng Prng; |
| 59 | Prng.Seed(aSeed); |
| 60 | for(auto Expected : PCG32_GLOBAL_DEMO) |
| 61 | { |
| 62 | EXPECT_EQ(Prng.RandomBits(), Expected); |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | TEST(Prng, Description) |
| 67 | { |
nothing calls this directly
no test coverage detected