chromium/components/zucchini/buffer_view_unittest.cc

// 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.

#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif

#include "components/zucchini/buffer_view.h"

#include <stddef.h>
#include <stdint.h>

#include <iterator>
#include <type_traits>
#include <vector>

#include "base/test/gtest_util.h"
#include "components/zucchini/test_utils.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace zucchini {

class BufferViewTest : public testing::Test {};

TEST_F(BufferViewTest, Size) {}

TEST_F(BufferViewTest, Empty) {}

TEST_F(BufferViewTest, FromRange) {}

TEST_F(BufferViewTest, Subscript) {}

TEST_F(BufferViewTest, SubRegion) {}

TEST_F(BufferViewTest, Shrink) {}

TEST_F(BufferViewTest, Read) {}

TEST_F(BufferViewTest, Write) {}

TEST_F(BufferViewTest, CanAccess) {}

TEST_F(BufferViewTest, LocalRegion) {}

TEST_F(BufferViewTest, Covers) {}

TEST_F(BufferViewTest, CoversArray) {}

TEST_F(BufferViewTest, Equals) {}

TEST_F(BufferViewTest, AlignOn) {}

}  // namespace zucchini