| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Tests for the Command Buffer Helper. | 5 // Tests for the Command Buffer Helper. |
| 6 | 6 |
| 7 #include "gpu/command_buffer/client/program_info_manager.h" | 7 #include "gpu/command_buffer/client/program_info_manager.h" |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" |
| 10 #include "testing/gmock/include/gmock/gmock.h" | 10 #include "testing/gmock/include/gmock/gmock.h" |
| 11 | 11 |
| 12 namespace gpu { | 12 namespace gpu { |
| 13 namespace gles2 { | 13 namespace gles2 { |
| 14 | 14 |
| 15 class ProgramInfoManagerTest : public testing::Test { | 15 class ProgramInfoManagerTest : public testing::Test { |
| 16 protected: | 16 protected: |
| 17 virtual void SetUp() { | 17 void SetUp() override {} |
| 18 } | |
| 19 | 18 |
| 20 virtual void TearDown() { | 19 void TearDown() override {} |
| 21 } | |
| 22 | 20 |
| 23 scoped_ptr<ProgramInfoManager> program_info_manager_; | 21 scoped_ptr<ProgramInfoManager> program_info_manager_; |
| 24 }; | 22 }; |
| 25 | 23 |
| 26 TEST_F(ProgramInfoManagerTest, Basic) { | 24 TEST_F(ProgramInfoManagerTest, Basic) { |
| 27 } | 25 } |
| 28 | 26 |
| 29 } // namespace gles2 | 27 } // namespace gles2 |
| 30 } // namespace gpu | 28 } // namespace gpu |
| 31 | 29 |
| 32 | 30 |
| OLD | NEW |