2023-10-09 00:19:32 -07:00
|
|
|
using JetBrains.Annotations;
|
|
|
|
|
|
2023-08-05 16:16:48 +12:00
|
|
|
namespace Content.IntegrationTests;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Attribute that indicates that a string contains yaml prototype data that should be loaded by integration tests.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[AttributeUsage(AttributeTargets.Field)]
|
2023-10-09 00:19:32 -07:00
|
|
|
[MeansImplicitUse]
|
2023-08-05 16:16:48 +12:00
|
|
|
public sealed class TestPrototypesAttribute : Attribute
|
|
|
|
|
{
|
|
|
|
|
}
|