llvm/libc/test/src/__support/endian_test.cpp

//===-- Unittests for endian ----------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "src/__support/endian.h"
#include "src/__support/macros/config.h"
#include "test/UnitTest/Test.h"

namespace LIBC_NAMESPACE_DECL {

struct LlvmLibcEndian : testing::Test {};

TEST_F(LlvmLibcEndian, Field) {}

TEST_F(LlvmLibcEndian, uint8_t) {}

TEST_F(LlvmLibcEndian, uint16_t) {}

TEST_F(LlvmLibcEndian, uint32_t) {}

TEST_F(LlvmLibcEndian, uint64_t) {}

} // namespace LIBC_NAMESPACE_DECL