Interface ISelfTestStep
Interface for test implementations.
Assembly: Dalamud.dll
View Source
Declaration
public interface ISelfTestStep
Properties
Name
Gets the name of the test.
View Source
Declaration
string Name { get; }
Methods
RunStep()
Run the test step, once per frame it is active.
View Source
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.
View Source
Declaration
void CleanUp()