chromium/third_party/angle/src/libANGLE/Fence_unittest.cpp

//
// Copyright 2014 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//

#include "gmock/gmock.h"
#include "gtest/gtest.h"

#include "libANGLE/Fence.h"
#include "libANGLE/renderer/FenceNVImpl.h"
#include "libANGLE/renderer/SyncImpl.h"
#include "tests/angle_unittests_utils.h"

usingnamespacetesting;

namespace
{

//
// FenceNV tests
//

class MockFenceNVImpl : public rx::FenceNVImpl
{};

class FenceNVTest : public Test
{};

TEST_F(FenceNVTest, SetAndTestBehavior)
{}

//
// Sync tests
//

class MockSyncImpl : public rx::SyncImpl
{};

class FenceSyncTest : public Test
{};

TEST_F(FenceSyncTest, SetAndGetStatusBehavior)
{}

}  // namespace