// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/strings/abseil_string_number_conversions.h" #include <stdint.h> #include <limits> #include "testing/gtest/include/gtest/gtest.h" #include "third_party/abseil-cpp/absl/numeric/int128.h" namespace base { TEST(AbseilStringNumberConversionsTest, StringToUint128) { … } TEST(AbseilStringNumberConversionsTest, HexStringToUInt128) { … } } // namespace base