You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
32 lines
728 B
C++
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;
|
|
}
|
|
};
|