Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

reference-execution-settings.md 1.5KB

ExecutionSettings

The ExecutionSettings is a set of filters and other settings provided when running a set of tests from the TestRunnerApi.

Constructors

Syntax Description
ExecutionSettings(params Filter[] filtersToExecute) Creates an instance with a given set of filters, if any.

Fields

Syntax Description
Filter[] filters A collection of Filters to execute tests on.
ITestRunSettings overloadTestRunSettings An instance of ITestRunSettings to set up before running tests on a Player.
bool runSynchronously If true, the call to Execute() will run tests synchronously, guaranteeing that all tests have finished running by the time the call returns. Note that this is only supported for EditMode tests, and that tests which take multiple frames (i.e. [UnityTest] tests, or tests with [UnitySetUp] or [UnityTearDown] scaffolding) will be filtered out.
‘int playerHeartbeatTimeout’ The time, in seconds, the editor should wait for heartbeats after starting a test run on a player. This defaults to 10 minutes.