llvm/libc/test/src/stdio/printf_core/converter_test.cpp

//===-- Unittests for the printf Converter --------------------------------===//
//
// 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/stdio/printf_core/converter.h"
#include "src/stdio/printf_core/core_structs.h"
#include "src/stdio/printf_core/writer.h"

#include "test/UnitTest/Test.h"

class LlvmLibcPrintfConverterTest : public LIBC_NAMESPACE::testing::Test {};

TEST_F(LlvmLibcPrintfConverterTest, SimpleRawConversion) {}

TEST_F(LlvmLibcPrintfConverterTest, PercentConversion) {}

TEST_F(LlvmLibcPrintfConverterTest, CharConversionSimple) {}

TEST_F(LlvmLibcPrintfConverterTest, CharConversionRightJustified) {}

TEST_F(LlvmLibcPrintfConverterTest, CharConversionLeftJustified) {}

TEST_F(LlvmLibcPrintfConverterTest, StringConversionSimple) {}

TEST_F(LlvmLibcPrintfConverterTest, StringConversionPrecisionHigh) {}

TEST_F(LlvmLibcPrintfConverterTest, StringConversionPrecisionLow) {}

TEST_F(LlvmLibcPrintfConverterTest, StringConversionRightJustified) {}

TEST_F(LlvmLibcPrintfConverterTest, StringConversionLeftJustified) {}

TEST_F(LlvmLibcPrintfConverterTest, IntConversionSimple) {}

TEST_F(LlvmLibcPrintfConverterTest, HexConversion) {}

TEST_F(LlvmLibcPrintfConverterTest, BinaryConversion) {}

TEST_F(LlvmLibcPrintfConverterTest, PointerConversion) {}

TEST_F(LlvmLibcPrintfConverterTest, OctConversion) {}