#include "components/crx_file/crx_creator.h"
#include "base/base64.h"
#include "base/base_paths.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/path_service.h"
#include "components/crx_file/crx_verifier.h"
#include "crypto/rsa_private_key.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace {
base::FilePath TestFile(const std::string& file) { … }
constexpr char kTestCompressedVerifiedContents[] = …;
}
namespace crx_file {
CrxCreatorTest;
TEST_F(CrxCreatorTest, Create) { … }
TEST_F(CrxCreatorTest, VerifyCrxWithVerifiedContents) { … }
}