// Copyright 2019 The PDFium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "xfa/fgas/crt/cfgas_decimal.h" #include <math.h> #include <limits> #include "testing/gtest/include/gtest/gtest.h" TEST(CFGAS_Decimal, Empty) { … } TEST(CFGAS_Decimal, FromInt32) { … } TEST(CFGAS_Decimal, FromUint32) { … } TEST(CFGAS_Decimal, FromUint64) { … } TEST(CFGAS_Decimal, FromFloat) { … } TEST(CFGAS_Decimal, FromFloatFractional) { … } TEST(CFGAS_Decimal, FromString) { … } TEST(CFGAS_Decimal, FromString28Digits) { … }