OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "components/metrics/metrics_reporting_scheduler.h" | 5 #include "components/metrics/metrics_reporting_scheduler.h" |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "base/bind.h" | 8 #include "base/bind.h" |
9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
10 #include "base/run_loop.h" | 10 #include "base/run_loop.h" |
11 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
12 | 12 |
| 13 namespace metrics { |
| 14 |
13 class MetricsReportingSchedulerTest : public testing::Test { | 15 class MetricsReportingSchedulerTest : public testing::Test { |
14 public: | 16 public: |
15 MetricsReportingSchedulerTest() : callback_call_count_(0) {} | 17 MetricsReportingSchedulerTest() : callback_call_count_(0) {} |
16 virtual ~MetricsReportingSchedulerTest() {} | 18 virtual ~MetricsReportingSchedulerTest() {} |
17 | 19 |
18 base::Closure GetCallback() { | 20 base::Closure GetCallback() { |
19 return base::Bind(&MetricsReportingSchedulerTest::SchedulerCallback, | 21 return base::Bind(&MetricsReportingSchedulerTest::SchedulerCallback, |
20 base::Unretained(this)); | 22 base::Unretained(this)); |
21 } | 23 } |
22 | 24 |
(...skipping 26 matching lines...) Expand all Loading... |
49 TEST_F(MetricsReportingSchedulerTest, InitTaskCompleteAfterTimer) { | 51 TEST_F(MetricsReportingSchedulerTest, InitTaskCompleteAfterTimer) { |
50 MetricsReportingScheduler scheduler(GetCallback()); | 52 MetricsReportingScheduler scheduler(GetCallback()); |
51 scheduler.SetUploadIntervalForTesting(base::TimeDelta()); | 53 scheduler.SetUploadIntervalForTesting(base::TimeDelta()); |
52 scheduler.Start(); | 54 scheduler.Start(); |
53 base::RunLoop().RunUntilIdle(); | 55 base::RunLoop().RunUntilIdle(); |
54 EXPECT_EQ(0, callback_call_count()); | 56 EXPECT_EQ(0, callback_call_count()); |
55 | 57 |
56 scheduler.InitTaskComplete(); | 58 scheduler.InitTaskComplete(); |
57 EXPECT_EQ(1, callback_call_count()); | 59 EXPECT_EQ(1, callback_call_count()); |
58 } | 60 } |
| 61 |
| 62 } // namespace metrics |
OLD | NEW |