chromium/net/tools/content_decoder_tool/content_decoder_tool_unittest.cc

// 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 "net/tools/content_decoder_tool/content_decoder_tool.h"

#include <istream>
#include <memory>
#include <ostream>
#include <utility>

#include "base/files/file_util.h"
#include "base/path_service.h"
#include "net/filter/brotli_source_stream.h"
#include "net/filter/filter_source_stream_test_util.h"
#include "net/filter/mock_source_stream.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "testing/platform_test.h"
#include "third_party/zlib/zlib.h"

namespace net {

namespace {

const int kBufferSize =;

}  // namespace

class ContentDecoderToolTest : public PlatformTest {};

TEST_F(ContentDecoderToolTest, TestGzip) {}

TEST_F(ContentDecoderToolTest, TestBrotli) {}

}  // namespace net