Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2465)

Unified Diff: chrome/browser/metrics/metrics_reporting_scheduler_unittest.cc

Issue 294693002: Moved metrics_reporting_scheduler* to //components/metrics. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Hopefully synced this time. Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/metrics/metrics_reporting_scheduler.cc ('k') | chrome/browser/metrics/metrics_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/metrics/metrics_reporting_scheduler_unittest.cc
diff --git a/chrome/browser/metrics/metrics_reporting_scheduler_unittest.cc b/chrome/browser/metrics/metrics_reporting_scheduler_unittest.cc
deleted file mode 100644
index 487ceebebd8415373c84c3c1d68ba05f32e46e23..0000000000000000000000000000000000000000
--- a/chrome/browser/metrics/metrics_reporting_scheduler_unittest.cc
+++ /dev/null
@@ -1,58 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/metrics/metrics_reporting_scheduler.h"
-
-#include "base/basictypes.h"
-#include "base/bind.h"
-#include "base/message_loop/message_loop.h"
-#include "base/run_loop.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-class MetricsReportingSchedulerTest : public testing::Test {
- public:
- MetricsReportingSchedulerTest() : callback_call_count_(0) {}
- virtual ~MetricsReportingSchedulerTest() {}
-
- base::Closure GetCallback() {
- return base::Bind(&MetricsReportingSchedulerTest::SchedulerCallback,
- base::Unretained(this));
- }
-
- int callback_call_count() const { return callback_call_count_; }
-
- private:
- void SchedulerCallback() {
- ++callback_call_count_;
- }
-
- int callback_call_count_;
-
- base::MessageLoopForUI message_loop_;
-
- DISALLOW_COPY_AND_ASSIGN(MetricsReportingSchedulerTest);
-};
-
-
-TEST_F(MetricsReportingSchedulerTest, InitTaskCompleteBeforeTimer) {
- MetricsReportingScheduler scheduler(GetCallback());
- scheduler.SetUploadIntervalForTesting(base::TimeDelta());
- scheduler.InitTaskComplete();
- scheduler.Start();
- EXPECT_EQ(0, callback_call_count());
-
- base::RunLoop().RunUntilIdle();
- EXPECT_EQ(1, callback_call_count());
-}
-
-TEST_F(MetricsReportingSchedulerTest, InitTaskCompleteAfterTimer) {
- MetricsReportingScheduler scheduler(GetCallback());
- scheduler.SetUploadIntervalForTesting(base::TimeDelta());
- scheduler.Start();
- base::RunLoop().RunUntilIdle();
- EXPECT_EQ(0, callback_call_count());
-
- scheduler.InitTaskComplete();
- EXPECT_EQ(1, callback_call_count());
-}
« no previous file with comments | « chrome/browser/metrics/metrics_reporting_scheduler.cc ('k') | chrome/browser/metrics/metrics_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698