Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FAutomationTestBase
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool TestSamePtr
(
const TCHAR* Description, |
Logs an error if the two pointers do not point to the same object in memory. | Misc/AutomationTest.h | |
bool TestSamePtr
(
const FString& Description, |
Misc/AutomationTest.h |
TestSamePtr(const TCHAR , const ValueType , const ValueType *)
Description
Logs an error if the two pointers do not point to the same object in memory.
| Name | TestSamePtr |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/AutomationTest.h |
| Include Path | #include "Misc/AutomationTest.h" |
template<typename ValueType>
bool TestSamePtr
(
const TCHAR * Description,
const ValueType * Actual,
const ValueType * Expected
)
Parameters
| Name | Remarks |
|---|---|
| Description | Description text for the test. |
| Actual | The actual pointer. |
| Expected | The expected pointer. |
See Also
-
TestNotSamePtr
-
TestNotSame
TestSamePtr(const FString &, const ValueType , const ValueType )
| Name | TestSamePtr |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/AutomationTest.h |
| Include Path | #include "Misc/AutomationTest.h" |
template<typename ValueType>
bool TestSamePtr
(
const FString & Description,
const ValueType * Actual,
const ValueType * Expected
)