unreal.FunctionalTestResult

class unreal.FunctionalTestResult

Bases: unreal.EnumBase

EFunctional Test Result

C++ Source:

  • Module: FunctionalTesting

  • File: FunctionalTest.h

DEFAULT

When finishing a test if you use Default, you’re not explicitly stating if the test passed or failed. Instead you’re instead allowing any tested assertions to have decided that for you. Even if you do explicitly log success, it can be overturned by errors that occurred during the test.

Type

0

ERROR

2

FAILED

4

INVALID

1

RUNNING

3

SUCCEEDED

5