// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/sync_file_system/logger.h" #include "testing/gtest/include/gtest/gtest.h" EventLogger; namespace sync_file_system { namespace { // Logs one event at each supported LogSeverity level. void LogSampleEvents() { … } bool ContainsString(const std::string& contains_string, EventLogger::Event event) { … } } // namespace class LoggerTest : public testing::Test { … }; TEST_F(LoggerTest, GetLogHistory) { … } TEST_F(LoggerTest, ClearLog) { … } } // namespace sync_file_system