chromium/chrome/browser/component_updater/chrome_component_updater_configurator_unittest.cc

// Copyright 2015 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/component_updater/chrome_component_updater_configurator.h"

#include <memory>
#include <string>
#include <vector>

#include "base/command_line.h"
#include "base/memory/ref_counted.h"
#include "base/time/time.h"
#include "components/component_updater/component_updater_command_line_config_policy.h"
#include "components/component_updater/component_updater_switches.h"
#include "components/component_updater/component_updater_url_constants.h"
#include "components/component_updater/configurator_impl.h"
#include "components/prefs/testing_pref_service.h"
#include "components/update_client/configurator.h"
#include "components/update_client/update_client.h"
#include "components/update_client/update_query_params.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"

namespace component_updater {

class ChromeComponentUpdaterConfiguratorTest : public testing::Test {};

void ChromeComponentUpdaterConfiguratorTest::SetUp() {}

TEST_F(ChromeComponentUpdaterConfiguratorTest, TestDisablePings) {}

TEST_F(ChromeComponentUpdaterConfiguratorTest, TestFastUpdate) {}

TEST_F(ChromeComponentUpdaterConfiguratorTest, TestOverrideUrl) {}

TEST_F(ChromeComponentUpdaterConfiguratorTest, TestSwitchRequestParam) {}

TEST_F(ChromeComponentUpdaterConfiguratorTest, TestUpdaterDefaultUrl) {}

TEST_F(ChromeComponentUpdaterConfiguratorTest, TestEnabledCupSigning) {}

TEST_F(ChromeComponentUpdaterConfiguratorTest, TestUseEncryption) {}

TEST_F(ChromeComponentUpdaterConfiguratorTest, TestProdId) {}

}  // namespace component_updater