VinTest.GametestModsystemBase
VinTest¶
GametestModsystemBase Class¶
Base class for ModSystem in your test mod.
Inheritance ModSystem → GametestModsystemBase
Properties¶
GametestModsystemBase.SApi Property¶
Server API, initialized upon StartServerSide().
Property Value¶
GametestModsystemBase.StartupDelayMs Property¶
Delay between player joining and first testsuite starting. Customize this if your test world needs more time to load.
Property Value¶
Methods¶
GametestModsystemBase.CreateSuites(IServerPlayer) Method¶
Factory method to create the set of test suites to run. You are required to implement this, returning a collection of your suite implementations.
Parameters¶
player IServerPlayer
The joining player.
Returns¶
Object[]
An array of test suites.
GametestModsystemBase.OnManualModeReady(IServerPlayer) Method¶
Called instead of running tests when ManualMode is enabled in config.
Override to perform any custom initialization or register debug commands.
Parameters¶
player IServerPlayer
The joining player.