chromium/net/third_party/quiche/src/quiche/common/quiche_endian_test.cc

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

#include "quiche/common/quiche_endian.h"

#include "quiche/common/platform/api/quiche_test.h"

namespace quiche {
namespace test {
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 =;

class QuicheEndianTest : public QuicheTest {};

// Test portable version.  Since we normally compile with either GCC or Clang,
// it will very rarely used otherwise.
TEST_F(QuicheEndianTest, Portable) {}

TEST_F(QuicheEndianTest, HostToNet) {}

TEST_F(QuicheEndianTest, NetToHost) {}

}  // namespace
}  // namespace test
}  // namespace quiche