#include "base/containers/vector_buffer.h"
#include "base/compiler_specific.h"
#include "base/memory/raw_ptr.h"
#include "base/test/bind.h"
#include "base/test/copy_only_int.h"
#include "base/test/move_only_int.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace base::internal {
namespace {
class TRIVIAL_ABI TrivialAbiWithCountingOperations { … };
}
TEST(VectorBuffer, DeletePOD) { … }
TEST(VectorBuffer, DeleteMoveOnly) { … }
TEST(VectorBuffer, PODMove) { … }
TEST(VectorBuffer, MovableMove) { … }
TEST(VectorBuffer, CopyToMove) { … }
TEST(VectorBuffer, TrivialAbiMove) { … }
}