UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
HttpTests.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
7
12{
13public:
14
23 FHttpTest(const FString& InVerb, const FString& InPayload, const FString& InUrl, int32 InIterations);
24
28 void Run(void);
29
37 void RequestComplete(FHttpRequestPtr HttpRequest, FHttpResponsePtr HttpResponse, bool bSucceeded);
38
39private:
40 FString Verb;
41 FString Payload;
42 FString Url;
43 int32 TestsToRun;
44};
45
FPlatformTypes::int32 int32
A 32-bit signed integer.
Definition Platform.h:1125
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
Definition HttpTests.h:12
void Run(void)
Definition HttpTests.cpp:18
void RequestComplete(FHttpRequestPtr HttpRequest, FHttpResponsePtr HttpResponse, bool bSucceeded)
Definition HttpTests.cpp:37