This repository has been archived on 2025-04-28. You can view files and clone it, but cannot push or open issues or pull requests.
ARPlusSystem/ARPlusSystem-250418/Library/PackageCache/com.unity.test-framework@1..../UnityEngine.TestRunner/Assertions/OutOfOrderExpectedLogMessag...

27 lines
839 B
C#

using NUnit.Framework;
using NUnit.Framework.Interfaces;
using UnityEngine.TestTools.Logging;
namespace UnityEngine.TestTools.TestRunner
{
internal class OutOfOrderExpectedLogMessageException : ResultStateException
{
public OutOfOrderExpectedLogMessageException(LogEvent log, LogMatch nextExpected)
: base(BuildMessage(log, nextExpected))
{
}
private static string BuildMessage(LogEvent log, LogMatch nextExpected)
{
return $"Expected {log.LogType} with '{log.Message}' arrived out of order. Expected {nextExpected.LogType} with '{nextExpected.Message}' next.";
}
public override ResultState ResultState
{
get { return ResultState.Failure; }
}
public override string StackTrace { get { return null; } }
}
}