10 #include "gmock/gmock.h"
11 #include "gtest/gtest.h"
13 namespace sca_prng_unittest {
20 197, 215, 20, 132, 248, 207, 155, 244, 183, 111, 71, 144, 71, 48, 128,
21 75, 158, 50, 37, 169, 241, 51, 181, 222, 161, 104, 244, 226, 133, 31,
22 7, 47, 204, 0, 252, 170, 124, 166, 32, 97, 113, 122, 72, 229, 46,
23 41, 163, 250, 55, 154, 149, 63, 170, 104, 147, 227, 46, 197, 162, 123,
24 148, 94, 96, 95, 16, 133, 243, 35, 45, 66, 76, 19, 41, 200, 141,
25 120, 110, 214, 140, 230, 252, 182, 42, 166, 59, 249, 171, 97, 124, 8,
26 138, 59, 112, 190, 87, 170, 218, 31, 51, 74};
28 TEST(RandByte, Seed_0) {
29 std::vector<uint8_t> actual(kExpected.size());
33 EXPECT_THAT(actual, testing::ElementsAreArray(kExpected));
36 TEST(RandBytes, Seed_0) {
37 std::vector<uint8_t> actual(kExpected.size());
41 EXPECT_THAT(actual, testing::ElementsAreArray(kExpected));