| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/installer/util/google_update_settings.h" | |
| 6 #include "testing/gtest/include/gtest/gtest.h" | |
| 7 #include "testing/platform_test.h" | |
| 8 | |
| 9 class GoogleUpdateTest : public PlatformTest { | |
| 10 }; | |
| 11 | |
| 12 TEST_F(GoogleUpdateTest, StatsConstent) { | |
| 13 // Stats are off by default. | |
| 14 EXPECT_FALSE(GoogleUpdateSettings::GetCollectStatsConsent()); | |
| 15 | |
| 16 // Stats reporting is ON. | |
| 17 EXPECT_TRUE(GoogleUpdateSettings::SetCollectStatsConsent(true)); | |
| 18 EXPECT_TRUE(GoogleUpdateSettings::GetCollectStatsConsent()); | |
| 19 | |
| 20 // Stats reporting is OFF. | |
| 21 EXPECT_TRUE(GoogleUpdateSettings::SetCollectStatsConsent(false)); | |
| 22 EXPECT_FALSE(GoogleUpdateSettings::GetCollectStatsConsent()); | |
| 23 } | |
| OLD | NEW |