Home | History | Annotate | Download | only in fxcrt
      1 // Copyright 2015 PDFium Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 #include "testing/gtest/include/gtest/gtest.h"
      6 
      7 #include "core/include/fxcrt/fx_ext.h"
      8 
      9 TEST(fxcrt, FXSYS_toHexDigit) {
     10   EXPECT_EQ(10, FXSYS_toHexDigit('a'));
     11   EXPECT_EQ(10, FXSYS_toHexDigit('A'));
     12   EXPECT_EQ(7, FXSYS_toHexDigit('7'));
     13   EXPECT_EQ(0, FXSYS_toHexDigit('i'));
     14 }
     15 
     16 TEST(fxcrt, FXSYS_toDecimalDigit) {
     17   EXPECT_EQ(7, FXSYS_toDecimalDigit('7'));
     18   EXPECT_EQ(0, FXSYS_toDecimalDigit('a'));
     19 }
     20 
     21 TEST(fxcrt, FXSYS_toDecimalDigitWide) {
     22   EXPECT_EQ(7, FXSYS_toDecimalDigitWide(L'7'));
     23   EXPECT_EQ(0, FXSYS_toDecimalDigitWide(L'a'));
     24 }
     25