|
@@ -50,10 +50,10 @@ namespace RecastNavigationTests
|
|
|
return AZ::Aabb::CreateCenterHalfExtents(AZ::Vector3::CreateZero(), AZ::Vector3::CreateOne() * 10);
|
|
|
}
|
|
|
|
|
|
- MOCK_METHOD0(GetShapeType, AZ::Crc32());
|
|
|
- MOCK_METHOD2(GetTransformAndLocalBounds, void(AZ::Transform&, AZ::Aabb&));
|
|
|
- MOCK_METHOD1(IsPointInside, bool(const AZ::Vector3&));
|
|
|
- MOCK_METHOD1(DistanceSquaredFromPoint, float(const AZ::Vector3&));
|
|
|
+ MOCK_CONST_METHOD0(GetShapeType, AZ::Crc32());
|
|
|
+ MOCK_CONST_METHOD2(GetTransformAndLocalBounds, void(AZ::Transform&, AZ::Aabb&));
|
|
|
+ MOCK_CONST_METHOD1(IsPointInside, bool(const AZ::Vector3&));
|
|
|
+ MOCK_CONST_METHOD1(DistanceSquaredFromPoint, float(const AZ::Vector3&));
|
|
|
};
|
|
|
|
|
|
class MockDebug : public AzFramework::DebugDisplayRequestBus::Handler
|