Skip to main content

Interface ISelfTestStep

Interface for test implementations.

Assembly: Dalamud.dll
Declaration
public interface ISelfTestStep

Properties

Name

Gets the name of the test.

Declaration
string Name { get; }

Methods

RunStep()

Run the test step, once per frame it is active.

Declaration
SelfTestStepResult RunStep()
Returns

Dalamud.Plugin.SelfTest.SelfTestStepResult: The result of this frame, test is discarded once a result other than Dalamud.Plugin.SelfTest.SelfTestStepResult.Waiting is returned.

CleanUp()

Clean up this test.

Declaration
void CleanUp()