96a5f06ca3
* Legacy cleanup, part 2 There are still things that can be removed, those will be likely done in part three: `The Return of the Cleanup` :) Signed-off-by: nemerle <96597+nemerle@users.noreply.github.com> * Fix windows build Somehow there were some unfixed errors from enabled warnings? I'm unsure if I've pulled repo in unstable state, or those were somehow missed. Signed-off-by: nemerle <96597+nemerle@users.noreply.github.com>
26 lines
525 B
C++
26 lines
525 B
C++
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project.
|
|
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
#include <ITexture.h>
|
|
#include <AzTest/AzTest.h>
|
|
|
|
class ITextureMock
|
|
: public ITexture
|
|
{
|
|
public:
|
|
MOCK_METHOD0(AddRef,
|
|
int());
|
|
MOCK_METHOD0(Release,
|
|
int());
|
|
MOCK_METHOD0(ReleaseForce,
|
|
int());
|
|
MOCK_CONST_METHOD0(GetName,
|
|
const char*());
|
|
};
|