// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "extensions/test/logging_timer.h" #include "base/test/simple_test_tick_clock.h" #include "base/time/time.h" #include "testing/gtest/include/gtest/gtest.h" namespace extensions { namespace { // Shorthand. const auto& GetMS = …; } // namespace class LoggingTimerTest : public testing::Test { … }; TEST_F(LoggingTimerTest, TestIncrements) { … } TEST_F(LoggingTimerTest, TestMultipleKeys) { … } } // namespace extensions