mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
* Engine pool manager * Move documentation * Move namespace * Move TestMapData to engine * Option to prevent loading test assembly * release notes * Rename to avoid conflicts
14 lines
345 B
C#
14 lines
345 B
C#
using System;
|
|
using JetBrains.Annotations;
|
|
|
|
namespace Robust.UnitTesting.Pool;
|
|
|
|
/// <summary>
|
|
/// Attribute that indicates that a string contains yaml prototype data that should be loaded by integration tests.
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Field)]
|
|
[MeansImplicitUse]
|
|
public sealed class TestPrototypesAttribute : Attribute
|
|
{
|
|
}
|