Roll leveldb 3f7758:803d69 (v1.17 -> v1.18)
[chromium-blink-merge.git] / gpu / command_buffer / client / program_info_manager_unittest.cc
blobba62703ef9882fe8d1964d9b8147685622f0b0f1
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // Tests for the Command Buffer Helper.
7 #include "gpu/command_buffer/client/program_info_manager.h"
8 #include "base/memory/scoped_ptr.h"
9 #include "testing/gtest/include/gtest/gtest.h"
10 #include "testing/gmock/include/gmock/gmock.h"
12 namespace gpu {
13 namespace gles2 {
15 class ProgramInfoManagerTest : public testing::Test {
16 protected:
17 void SetUp() override {}
19 void TearDown() override {}
21 scoped_ptr<ProgramInfoManager> program_info_manager_;
24 TEST_F(ProgramInfoManagerTest, Basic) {
27 } // namespace gles2
28 } // namespace gpu