File size: 839 Bytes
18a519f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 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; } }
}
}
|