#include "absl/crc/crc32c.h"
#include <algorithm>
#include <cstddef>
#include <cstdint>
#include <cstring>
#include <sstream>
#include <string>
#include "gtest/gtest.h"
#include "absl/crc/internal/crc32c.h"
#include "absl/strings/str_cat.h"
#include "absl/strings/str_format.h"
#include "absl/strings/string_view.h"
namespace {
TEST(CRC32C, RFC3720) { … }
std::string TestString(size_t len) { … }
TEST(CRC32C, Compute) { … }
TEST(CRC32C, Extend) { … }
TEST(CRC32C, ExtendByZeroes) { … }
TEST(CRC32C, UnextendByZeroes) { … }
TEST(CRC32C, Concat) { … }
TEST(CRC32C, Memcpy) { … }
TEST(CRC32C, RemovePrefix) { … }
TEST(CRC32C, RemoveSuffix) { … }
TEST(CRC32C, InsertionOperator) { … }
TEST(CRC32C, AbslStringify) { … }
}