mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
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.
23 lines
585 B
C#
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);
|
|
}
|
|
}
|