// Copyright 2021 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/time/time_delta_from_string.h" #include "base/time/time.h" #include "testing/gtest/include/gtest/gtest.h" namespace base { namespace { // Adapted from Abseil's TEST(Duration, ParseDuration): // https://cs.chromium.org/chromium/src/third_party/abseil-cpp/absl/time/duration_test.cc?l=1660&rcl=93c58ec988d77f4277f9c9d237d3507991fbd719 TEST(TimeDeltaFromStringTest, ParseTimeDeltaTest) { … } } // namespace } // namespace base