chromium/third_party/pdfium/core/fxcrt/fx_system_unittest.cpp

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

#include <math.h>

#include <iterator>
#include <limits>

#include "build/build_config.h"
#include "core/fxcrt/compiler_specific.h"
#include "core/fxcrt/fx_string.h"
#include "core/fxcrt/fx_system.h"
#include "testing/gtest/include/gtest/gtest.h"

// Unit test covering cases where PDFium replaces well-known library
// functionality on any given platformn.

#if !BUILDFLAG(IS_WIN)

namespace {

const char kSentinel =;

void Check32BitBase16Itoa(int32_t input, const char* expected_output) {}

void Check32BitBase10Itoa(int32_t input, const char* expected_output) {}

void Check32BitBase2Itoa(int32_t input, const char* expected_output) {}

void Check64BitBase16Itoa(int64_t input, const char* expected_output) {}

void Check64BitBase10Itoa(int64_t input, const char* expected_output) {}

void Check64BitBase2Itoa(int64_t input, const char* expected_output) {}

}  // namespace

TEST(fxcrt, FXSYS_roundf) {}

TEST(fxcrt, FXSYS_round) {}

TEST(fxcrt, FXSYS_itoa_InvalidRadix) {}

TEST(fxcrt, FXSYS_itoa) {}

TEST(fxcrt, FXSYS_i64toa_InvalidRadix) {}

TEST(fxcrt, FXSYS_i64toa) {}

#endif  // !BUILDFLAG(IS_WIN)

TEST(fxcrt, FXSYS_wcsftime) {}

TEST(fxcrt, FXSYS_atoi) {}

TEST(fxcrt, FXSYS_atoi64) {}

TEST(fxcrt, FXSYS_wtoi) {}

TEST(fxcrt, FXSYS_atoui) {}