summaryrefslogtreecommitdiff
path: root/chromium/net/cert/pki/cert_issuer_source_static_unittest.cc
blob: 02727cc67248d9e525752ee2213a756931ed4a41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "net/cert/pki/cert_issuer_source_static.h"

#include "net/cert/pki/cert_issuer_source_sync_unittest.h"
#include "net/cert/pki/parsed_certificate.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace net {

namespace {

class CertIssuerSourceStaticTestDelegate {
 public:
  void AddCert(scoped_refptr<ParsedCertificate> cert) {
    source_.AddCert(std::move(cert));
  }

  CertIssuerSource& source() { return source_; }

 protected:
  CertIssuerSourceStatic source_;
};

INSTANTIATE_TYPED_TEST_SUITE_P(CertIssuerSourceStaticTest,
                               CertIssuerSourceSyncTest,
                               CertIssuerSourceStaticTestDelegate);

INSTANTIATE_TYPED_TEST_SUITE_P(CertIssuerSourceStaticNormalizationTest,
                               CertIssuerSourceSyncNormalizationTest,
                               CertIssuerSourceStaticTestDelegate);

}  // namespace

}  // namespace net