mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-15 19:22:19 +08:00
19 lines
488 B
C#
19 lines
488 B
C#
using System.Threading.Tasks;
|
|
using PublicApiGenerator;
|
|
using VerifyXunit;
|
|
using Xunit;
|
|
|
|
namespace BililiveRecorder.Flv.Tests
|
|
{
|
|
[UsesVerify]
|
|
public class PublicApi
|
|
{
|
|
[Fact]
|
|
public Task HasNoChangesAsync()
|
|
{
|
|
var publicApi = typeof(Tag).Assembly.GeneratePublicApi(new ApiGeneratorOptions { ExcludeAttributes = new[] { "System.Runtime.Versioning.TargetFrameworkAttribute" } });
|
|
return Verifier.Verify(publicApi);
|
|
}
|
|
}
|
|
}
|