// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "gin/time_clamper.h" #include "base/time/time.h" #include "build/build_config.h" #include "testing/gtest/include/gtest/gtest.h" namespace gin { TEST(TimeClamperTest, CurrentClockTimeMilliseconds) { … } #if !BUILDFLAG(IS_ANDROID) TEST(TimeClamperTest, CurrentClockTimeMillisecondsThreshold) { … } TEST(TimeClamperTest, CurrentClockTimeMillisecondsThresholdNegative) { … } TEST(TimeClamperTest, CurrentClockTimeMillisecondsHighResolution) { … } #endif } // namespace gin