#include "net/log/net_log_values.h"
#include <limits>
#include "base/values.h"
#include "net/log/file_net_log_observer.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace net {
std::string GetNetLogString(std::string_view raw) { … }
TEST(NetLogValuesTest, NetLogASCIIStringValue) { … }
TEST(NetLogValuesTest, NetLogBinaryValue) { … }
template <typename T>
std::string SerializedNetLogNumber(T num) { … }
std::string SerializedNetLogInt64(int64_t num) { … }
std::string SerializedNetLogUint64(uint64_t num) { … }
TEST(NetLogValuesTest, NetLogNumberValue) { … }
}