C# Class UnityEditor.EditorTestsRunner.EditorTestsWithLogParser

Exibir arquivo Open project: CarlosHBC/UnityDecompiled

Public Methods

Method Description
ExpectLogLine ( string message ) : void

Expect a log message that matches the parameter.

ExpectLogLineRegex ( string pattern ) : void

Expect a log message that matches the regular expression pattern.

Private Methods

Method Description
ExpectLogLine ( MessageMatcher matcher ) : void
FixtureSetup ( ) : void
FixtureTeardown ( ) : void
LogMessageReceived ( string condition, string stackTrace, LogType type ) : void
TestCleanup ( ) : void
TestSetup ( ) : void

Method Details

ExpectLogLine() public method

Expect a log message that matches the parameter.

public ExpectLogLine ( string message ) : void
message string The expected log message.
return void

ExpectLogLineRegex() public method

Expect a log message that matches the regular expression pattern.

public ExpectLogLineRegex ( string pattern ) : void
pattern string The expected regex pattern.
return void