|
template<typename ValueType > |
static void | CheckMapStringKeyInvariants (const TMap< FString, ValueType > &ThisMap) |
|
template<typename ArrayType > |
static bool | IsComplexArrayEqual (const TArray< ArrayType > &ThisArray, const TArray< ArrayType > &OtherArray, const FString &PropertyName, FString &OutError) |
|
template<typename KeyType , typename ValueType > |
static bool | IsComplexMapValueEqual (const TMap< KeyType, ValueType > &ThisMap, const TMap< KeyType, ValueType > &OtherMap, const FString &PropertyName, FString &OutError, std::function< FString(const KeyType &)> GetKeyTypeAsString, std::function< FString(const ValueType &)> GetValueTypeAsString) |
|
template<typename ArrayType > |
static bool | IsComplexPointerArrayEqual (const TArray< ArrayType * > &ThisArray, const TArray< ArrayType * > &OtherArray, const FString &PropertyName, FString &OutError) |
|
template<typename KeyType , typename ValueType > |
static bool | IsComplexPointersMapEqual (const TMap< KeyType, ValueType * > &ThisMap, const TMap< KeyType, ValueType * > &OtherMap, const FString &PropertyName, FString &OutError, std::function< FString(const KeyType &)> GetKeyTypeAsString) |
|
template<typename ArrayType > |
static bool | IsPrimitiveArrayEqual (const TArray< ArrayType > &ThisArray, const TArray< ArrayType > &OtherArray, const FString &PropertyName, FString &OutError, std::function< FString(const ArrayType &)> GetArrayTypeAsString) |
|
template<typename KeyType , typename ValueType > |
static bool | IsPrimitiveMapEqual (const TMap< KeyType, ValueType > &ThisMap, const TMap< KeyType, ValueType > &OtherMap, const FString &PropertyName, FString &OutError, std::function< FString(const KeyType &)> GetKeyTypeAsString, std::function< FString(const ValueType &)> GetValueTypeAsString) |
|
template<typename SetType > |
static bool | IsSetEqual (const TSet< SetType > &ThisSet, const TSet< SetType > &OtherSet, const FString &PropertyName, FString &OutError, std::function< FString(const SetType &)> GetSetTypeAsString) |
|
Helpers for tests
Definition at line 264 of file DlgTesterHelper.h.