Data Structures | |
struct | TestParams |
class | CrcTest |
Functions | |
INSTANTIATE_TEST_SUITE_P (AllCases, CrcTest, testing::Values(TestParams{ "123456789", 0xcbf43926, }, TestParams{ "The quick brown fox jumps over the lazy dog", 0x414fa339, }, TestParams{ "\xfe\xca\xfe\xca\x02\xb0\xad\x1b", 0x9508ac14, })) | |
TEST_P (CrcTest, Crc32) | |
TEST_P (CrcTest, Crc32Add) | |
TEST_F (CrcTest, Misaligned) | |
TEST_P (CrcTest, Crc32Add8) | |
TEST_F (CrcTest, Crc32Add32) | |
struct crc32_unittest::anonymous_namespace{crc32_unittest.cc}::TestParams |
Definition at line 15 of file crc32_unittest.cc.
Data Fields | ||
---|---|---|
uint32_t | exp_crc | |
string | input |