chromium/net/ssl/ssl_config_service_unittest.cc

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "net/ssl/ssl_config_service.h"

#include <vector>

#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace net {

namespace {

class MockSSLConfigService : public SSLConfigService {};

class MockSSLConfigServiceObserver : public SSLConfigService::Observer {};

}  // namespace

TEST(SSLConfigServiceTest, NoChangesWontNotifyObservers) {}

TEST(SSLConfigServiceTest, ForceNotificationNotifiesObservers) {}

TEST(SSLConfigServiceTest, ConfigUpdatesNotifyObservers) {}

}  // namespace net