forked from google/boringssl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcert_issuer_source_static_unittest.cc
40 lines (28 loc) · 1.08 KB
/
cert_issuer_source_static_unittest.cc
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
38
39
40
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "cert_issuer_source_static.h"
#include <gtest/gtest.h>
#include "cert_issuer_source_sync_unittest.h"
#include "parsed_certificate.h"
namespace bssl {
namespace {
class CertIssuerSourceStaticTestDelegate {
public:
void AddCert(std::shared_ptr<const 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);
GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(
CertIssuerSourceSyncNotNormalizedTest);
} // namespace
} // namespace bssl