chromium/chrome/browser/security_events/security_event_recorder_impl_unittest.cc

// Copyright 2019 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/security_events/security_event_recorder_impl.h"

#include <memory>

#include "base/time/default_clock.h"
#include "components/sync/protocol/security_event_specifics.pb.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace {

class MockSecurityEventSyncBridge : public SecurityEventSyncBridge {};

MATCHER_P(HasTimestampAndContainsGaiaPasswordReuse, event, "") {}

}  // namespace

class SecurityEventRecorderImplTest : public testing::Test {};

TEST_F(SecurityEventRecorderImplTest, RecordGaiaPasswordReuse) {}