#include <va/va.h>
#include "media/gpu/vaapi/vaapi_wrapper.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
_;
Invoke;
Return;
namespace media {
namespace {
VaapiWrapper::VABufferDescriptor CreateVABufferDescriptor() { … }
class MockVaapiWrapper : public VaapiWrapper { … };
}
class VaapiWrapperTest : public testing::Test { … };
TEST_F(VaapiWrapperTest, SubmitBuffer) { … }
TEST_F(VaapiWrapperTest, SubmitBuffers) { … }
TEST_F(VaapiWrapperTest, FailOnSubmitBuffer) { … }
TEST_F(VaapiWrapperTest, FailOnSubmitBuffers) { … }
}