// Copyright 2019 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/json/values_util.h" #include <limits> #include <string_view> #include "base/files/file_path.h" #include "base/time/time.h" #include "base/unguessable_token.h" #include "testing/gtest/include/gtest/gtest.h" namespace base { namespace { TEST(ValuesUtilTest, BasicInt64Limits) { … } TEST(ValuesUtilTest, InvalidInt64Values) { … } TEST(ValuesUtilTest, FilePath) { … } TEST(ValuesUtilTest, UnguessableToken) { … } } // namespace } // namespace base