C# Class UnityEditor.EditorTests.Batch

This class can invoke editor tests runs.

显示文件 Open project: CarlosHBC/UnityDecompiled

Public Methods

Method Description
RunTests ( ITestRunnerCallback testRunnerCallback ) : void

Execute editor tests run.

RunTests ( ITestRunnerCallback testRunnerCallback, string nameFilter, string categoryFilter ) : void

Execute editor tests run.

RunTestsInRunnerWindow ( ) : void

Run tests in the editor tests runner window.

RunTestsInRunnerWindow ( string tests ) : void

Run tests in the editor tests runner window.

Private Methods

Method Description
GetVerboseTestLogger ( string verboseLog ) : ITestRunnerCallback
RunEditorTests ( string resultFilePath, string verboseLog, string nameFilter, string categoryFilter ) : void

Method Details

RunTests() public static method

Execute editor tests run.

public static RunTests ( ITestRunnerCallback testRunnerCallback ) : void
testRunnerCallback ITestRunnerCallback Test runner callback.
return void

RunTests() public static method

Execute editor tests run.

public static RunTests ( ITestRunnerCallback testRunnerCallback, string nameFilter, string categoryFilter ) : void
testRunnerCallback ITestRunnerCallback Test runner callback.
nameFilter string Test names to run.
categoryFilter string Categories to run.
return void

RunTestsInRunnerWindow() public static method

Run tests in the editor tests runner window.

public static RunTestsInRunnerWindow ( ) : void
return void

RunTestsInRunnerWindow() public static method

Run tests in the editor tests runner window.

public static RunTestsInRunnerWindow ( string tests ) : void
tests string Names of the tests to run.
return void