Files
PJB3005 788e9386fd Split up test project
Robust.UnitTesting was both ALL tests for RT, and also API surface for content tests.

Tests are now split into separate projects as appropriate, and the API side has also been split off.
2025-12-16 01:36:53 +01:00

23 lines
585 B
C#

using Robust.Shared;
using Robust.Shared.Configuration;
using Robust.Shared.Log;
// ReSharper disable once CheckNamespace
namespace Robust.UnitTesting
{
// ReSharper disable once InconsistentNaming
[CVarDefs]
public sealed class RTCVars : CVars
{
/*
* Logging
*/
/// <summary>
/// The log level which will cause a test failure.
/// </summary>
public static readonly CVarDef<LogLevel> FailureLogLevel =
CVarDef.Create("robust.tests.failure_log_level", Robust.Shared.Log.LogLevel.Error);
}
}