chromium/gpu/command_buffer/client/buffer_tracker_unittest.cc

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

// Tests for the BufferTracker.

#include "gpu/command_buffer/client/buffer_tracker.h"

#include <GLES2/gl2.h>
#include <GLES2/gl2ext.h>
#include <stddef.h>
#include <stdint.h>

#include <memory>

#include "gpu/command_buffer/client/client_test_helper.h"
#include "gpu/command_buffer/client/gles2_cmd_helper.h"
#include "gpu/command_buffer/client/mapped_memory.h"
#include "gpu/command_buffer/common/command_buffer.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace gpu {
namespace gles2 {

class MockClientCommandBufferImpl : public MockClientCommandBuffer {};

class BufferTrackerTest : public testing::Test {};

TEST_F(BufferTrackerTest, Basic) {}

TEST_F(BufferTrackerTest, ZeroSize) {}

TEST_F(BufferTrackerTest, LostContext) {}

TEST_F(BufferTrackerTest, Unmanage) {}

}  // namespace gles2
}  // namespace gpu