mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 11:42:22 +08:00
19 lines
378 B
C#
19 lines
378 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();
|
||
|
return Verifier.Verify(publicApi);
|
||
|
}
|
||
|
}
|
||
|
}
|