Class TestServerOptions
- Namespace
- Temporalio.Testing
- Assembly
- Temporalio.dll
Unstable options for a time-skipping workflow environment.
public class TestServerOptions : ICloneable
- Inheritance
-
TestServerOptions
- Implements
- Inherited Members
Remarks
WARNING: This API is subject to change/removal
Properties
DownloadVersion
Gets or sets the version to version of the test server to download. Default is "default".
public string DownloadVersion { get; set; }
Property Value
Remarks
By default, the best one for this SDK version is chosen. This can be a semantic version, "latest", or "default".
ExistingPath
Gets or sets the existing executable path for the test server.
public string? ExistingPath { get; set; }
Property Value
ExtraArgs
Gets or sets the extra arguments for the test server.
public IReadOnlyCollection<string>? ExtraArgs { get; set; }
Property Value
Remarks
Newlines are not allowed in values.
Methods
Clone()
Create a shallow copy of these options.
public virtual object Clone()
Returns
- object
A shallow copy of these options.
Remarks
Does not create a copy of the extra args.