#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 = …;
}
class ContentDecoderToolTest : public PlatformTest { … };
TEST_F(ContentDecoderToolTest, TestGzip) { … }
TEST_F(ContentDecoderToolTest, TestBrotli) { … }
}