chromium/third_party/pdfium/core/fxcrt/binary_buffer_unittest.cpp

// Copyright 2022 The PDFium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "core/fxcrt/binary_buffer.h"

#include <utility>
#include <vector>

#include "core/fxcrt/bytestring.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace fxcrt {

TEST(BinaryBuffer, Empty) {}

TEST(BinaryBuffer, MoveConstruct) {}

TEST(BinaryBuffer, MoveAssign) {}

TEST(BinaryBuffer, Clear) {}

TEST(BinaryBuffer, AppendSpans) {}

TEST(BinaryBuffer, AppendBlocks) {}

TEST(BinaryBuffer, AppendStrings) {}

TEST(BinaryBuffer, AppendBytes) {}

// Assumes little endian.
TEST(BinaryBuffer, AppendUint16) {}

// Assumes little endian.
TEST(BinaryBuffer, AppendUint32) {}

TEST(BinaryBuffer, AppendDouble) {}

}  // namespace fxcrt