mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
19 lines
466 B
C#
19 lines
466 B
C#
using System.IO;
|
|
using System.Runtime.CompilerServices;
|
|
using DiffEngine;
|
|
using VerifyTests;
|
|
|
|
namespace BililiveRecorder.Flv.Tests
|
|
{
|
|
public static class VerifyConfig
|
|
{
|
|
[ModuleInitializer]
|
|
public static void Init()
|
|
{
|
|
VerifierSettings.DerivePathInfo(Expectations.Initialize);
|
|
VerifierSettings.ModifySerialization(_ => _.IgnoreMembersWithType<Stream>());
|
|
DiffRunner.Disabled = true;
|
|
}
|
|
}
|
|
}
|