#ifndef NET_CERT_INTERNAL_TEST_HELPERS_H_
#define NET_CERT_INTERNAL_TEST_HELPERS_H_
#include <stddef.h>
#include <string>
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/boringssl/src/pki/parsed_certificate.h"
namespace net {
bool ReadCertChainFromFile(const std::string& file_path_ascii,
bssl::ParsedCertificateList* chain);
std::shared_ptr<const bssl::ParsedCertificate> ReadCertFromFile(
const std::string& file_path_ascii);
std::string ReadTestFileToString(const std::string& file_path_ascii);
}
#endif