chromium/third_party/puffin/src/integration_test.cc

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

#include <string>
#include <vector>

#include "gtest/gtest.h"

#include "puffin/memory_stream.h"
#include "puffin/src/include/puffin/puffdiff.h"
#include "puffin/src/include/puffin/puffpatch.h"
#include "puffin/src/include/puffin/utils.h"
#include "puffin/src/puffin_stream.h"
#include "puffin/src/unittest_common.h"

namespace puffin {

namespace {
// xxd -i <name>.zip
const Buffer kTestZipA =;

const Buffer kTestZipB =;

}  // namespace

class PuffinIntegrationTest : public testing::TestWithParam<PatchAlgorithm> {};

TEST_P(PuffinIntegrationTest, PuffinDiffPatchTest) {}

INSTANTIATE_TEST_SUITE_P();

}  // namespace puffin