mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 17:02:51 +08:00
25 lines
552 B
C#
25 lines
552 B
C#
using System.Runtime.CompilerServices;
|
|
using Spectre.Verify.Extensions;
|
|
using VerifyTests;
|
|
|
|
namespace Spectre.Console.Tests
|
|
{
|
|
public static class VerifyConfiguration
|
|
{
|
|
[ModuleInitializer]
|
|
public static void Init()
|
|
{
|
|
VerifierSettings.DerivePathInfo(Expectations.Initialize);
|
|
}
|
|
}
|
|
}
|
|
|
|
#if !NET5_0_OR_GREATER
|
|
namespace System.Runtime.CompilerServices
|
|
{
|
|
[AttributeUsage(AttributeTargets.Method, Inherited = false)]
|
|
public sealed class ModuleInitializerAttribute : Attribute
|
|
{
|
|
}
|
|
}
|
|
#endif |