Files
UnrealEngineUWP/Engine/Plugins/Tests/FunctionalTestingEditor/Source/Public/EditorFunctionalTest.h
Marc Audy 360d078ca3 Second batch of remaining Engine copyright updates.
#rnx
#rb none

[CL 10871248 by Marc Audy in Main branch]
2019-12-27 09:26:59 -05:00

32 lines
728 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "FunctionalTest.h"
#include "ScreenshotFunctionalTest.h"
#include "EditorFunctionalTest.generated.h"
/** Editor-only version of functional test actor, tests that call editor-only blueprints must inherit from this class */
UCLASS(Blueprintable, MinimalAPI)
class AEditorFunctionalTest : public AFunctionalTest
{
GENERATED_BODY()
virtual bool IsEditorOnly() const override
{
return true;
}
};
/** Editor-only version of screenshot functional test */
UCLASS(Blueprintable, MinimalAPI)
class AEditorScreenshotFunctionalTest : public AScreenshotFunctionalTest
{
GENERATED_BODY()
virtual bool IsEditorOnly() const override
{
return true;
}
};