chromium/components/enterprise/client_certificates/core/ssl_client_cert_identity_wrapper_unittest.cc

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

#include "components/enterprise/client_certificates/core/ssl_client_cert_identity_wrapper.h"

#include "base/memory/scoped_refptr.h"
#include "base/test/task_environment.h"
#include "base/test/test_future.h"
#include "net/cert/x509_certificate.h"
#include "net/ssl/ssl_private_key.h"
#include "net/ssl/test_ssl_private_key.h"
#include "net/test/cert_test_util.h"
#include "net/test/test_data_directory.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace client_certificates {

namespace {

scoped_refptr<net::X509Certificate> LoadTestCert() {}

}  // namespace

// Tests the creation of a SSLClientCertIdentityWrapper, and how calling
// AcquirePrivateKey will return the private key given at construction time.
TEST(SSLClientCertIdentityWrapperTest, AcquirePrivateKey) {}

}  // namespace client_certificates