chromium/base/sys_byteorder_unittest.cc

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

#include "base/sys_byteorder.h"

#include <stdint.h>

#include "build/build_config.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace {

const uint16_t k16BitTestData =;
const uint16_t k16BitSwappedTestData =;
const uint32_t k32BitTestData =;
const uint32_t k32BitSwappedTestData =;
const uint64_t k64BitTestData =;
const uint64_t k64BitSwappedTestData =;

}  // namespace

TEST(ByteOrderTest, NetToHost16) {}

TEST(ByteOrderTest, NetToHost32) {}

TEST(ByteOrderTest, NetToHost64) {}

TEST(ByteOrderTest, HostToNet16) {}

TEST(ByteOrderTest, HostToNet32) {}

TEST(ByteOrderTest, HostToNet64) {}