chromium/net/log/net_log_values_unittest.cc

// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 {

// Calls NetLogASCIIStringValue() on |raw| and returns the resulting string
// (rather than the base::Value).
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) {}

}  // namespace net