#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 { … };
}
TEST(SSLConfigServiceTest, NoChangesWontNotifyObservers) { … }
TEST(SSLConfigServiceTest, ForceNotificationNotifiesObservers) { … }
TEST(SSLConfigServiceTest, ConfigUpdatesNotifyObservers) { … }
}