summaryrefslogtreecommitdiff
path: root/Library/PackageCache/com.unity.test-framework@1.1.11/UnityEngine.TestRunner/Assertions/LogScope/ILogScope.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Library/PackageCache/com.unity.test-framework@1.1.11/UnityEngine.TestRunner/Assertions/LogScope/ILogScope.cs')
-rw-r--r--Library/PackageCache/com.unity.test-framework@1.1.11/UnityEngine.TestRunner/Assertions/LogScope/ILogScope.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/Library/PackageCache/com.unity.test-framework@1.1.11/UnityEngine.TestRunner/Assertions/LogScope/ILogScope.cs b/Library/PackageCache/com.unity.test-framework@1.1.11/UnityEngine.TestRunner/Assertions/LogScope/ILogScope.cs
deleted file mode 100644
index efd00f7..0000000
--- a/Library/PackageCache/com.unity.test-framework@1.1.11/UnityEngine.TestRunner/Assertions/LogScope/ILogScope.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace UnityEngine.TestTools.Logging
-{
- internal interface ILogScope : IDisposable
- {
- Queue<LogMatch> ExpectedLogs { get; set; }
- List<LogEvent> AllLogs { get; }
- List<LogEvent> FailingLogs { get; }
- bool IgnoreFailingMessages { get; set; }
- bool IsNUnitException { get; }
- bool IsNUnitSuccessException { get; }
- bool IsNUnitInconclusiveException { get; }
- bool IsNUnitIgnoreException { get; }
- string NUnitExceptionMessage { get; }
- void AddLog(string message, string stacktrace, LogType type);
- bool AnyFailingLogs();
- void ProcessExpectedLogs();
- void NoUnexpectedReceived();
- }
-}