// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/zucchini/buffer_sink.h" #include <stddef.h> #include <stdint.h> #include <vector> #include "testing/gtest/include/gtest/gtest.h" namespace zucchini { constexpr uint8_t kUninit = …; class BufferSinkTest : public testing::Test { … }; TEST_F(BufferSinkTest, PutValue) { … } TEST_F(BufferSinkTest, PutValueUnaligned) { … } TEST_F(BufferSinkTest, PutRange) { … } } // namespace zucchini