Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(323)

Side by Side Diff: gpu/command_buffer/client/share_group_unittest.cc

Issue 9836126: Add ShareGroup stub (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 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.
4
5 // Tests for the ShareGroup.
6
7 #include "gpu/command_buffer/client/share_group.h"
8
9 #include "testing/gtest/include/gtest/gtest.h"
10 #include "testing/gmock/include/gmock/gmock.h"
11
12 namespace gpu {
13 namespace gles2 {
14
15 class ShareGroupTest : public testing::Test {
16 protected:
17
18 virtual void SetUp() {
19 share_group_ = ShareGroup::Ref(new ShareGroup());
20 }
21
22 virtual void TearDown() {
23 }
24
25 scoped_refptr<ShareGroup> share_group_;
26 };
27
28 TEST_F(ShareGroupTest, Basic) {
29 }
30
31 } // namespace gles2
32 } // namespace gpu
33
34
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698