#include <stdint.h>
#include <optional>
#include <string>
#include <vector>
#include "base/files/file_path.h"
#include "base/files/memory_mapped_file.h"
#include "base/path_service.h"
#include "base/ranges/algorithm.h"
#include "components/zucchini/buffer_view.h"
#include "components/zucchini/patch_reader.h"
#include "components/zucchini/patch_writer.h"
#include "components/zucchini/zucchini.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace zucchini {
base::FilePath MakeTestPath(const std::string& filename) { … }
void TestGenApply(const std::string& old_filename,
const std::string& new_filename,
bool raw) { … }
TEST(EndToEndTest, GenApplyRaw) { … }
TEST(EndToEndTest, GenApplyIdentity) { … }
TEST(EndToEndTest, GenApplySimple) { … }
TEST(EndToEndTest, GenApplyCross) { … }
}