// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "pdf/loader/chunk_stream.h" #include <array> #include <memory> #include <utility> #include "testing/gtest/include/gtest/gtest.h" namespace chrome_pdf { namespace { TestChunkStream; std::unique_ptr<TestChunkStream::ChunkData> CreateChunkData() { … } } // namespace TEST(ChunkStreamTest, InRow) { … } TEST(ChunkStreamTest, InBackRow) { … } TEST(ChunkStreamTest, FillGap) { … } TEST(ChunkStreamTest, Read) { … } } // namespace chrome_pdf