暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ILogScope.cs 790B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. namespace UnityEngine.TestTools.Logging
  4. {
  5. internal interface ILogScope : IDisposable
  6. {
  7. Queue<LogMatch> ExpectedLogs { get; set; }
  8. List<LogEvent> AllLogs { get; }
  9. List<LogEvent> FailingLogs { get; }
  10. void EvaluateLogScope(bool endOfScopeCheck);
  11. bool IgnoreFailingMessages { get; set; }
  12. bool IsNUnitException { get; }
  13. bool IsNUnitSuccessException { get; }
  14. bool IsNUnitInconclusiveException { get; }
  15. bool IsNUnitIgnoreException { get; }
  16. string NUnitExceptionMessage { get; }
  17. void AddLog(string message, string stacktrace, LogType type);
  18. bool AnyFailingLogs();
  19. void ProcessExpectedLogs();
  20. void NoUnexpectedReceived();
  21. }
  22. }