mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 19:57:27 +08:00
18 lines
409 B
C#
18 lines
409 B
C#
|
using System.Runtime.CompilerServices;
|
||
|
using DiffEngine;
|
||
|
using VerifyTests;
|
||
|
|
||
|
namespace BililiveRecorder.Flv.RuleTests
|
||
|
{
|
||
|
public static class VerifyConfig
|
||
|
{
|
||
|
[ModuleInitializer]
|
||
|
public static void Init()
|
||
|
{
|
||
|
VerifierSettings.DerivePathInfo(Expectations.Initialize);
|
||
|
VerifierSettings.UseStrictJson();
|
||
|
DiffRunner.Disabled = true;
|
||
|
}
|
||
|
}
|
||
|
}
|