Files
octokit.net/Octokit.Tests/SelfTests.cs
2022-08-12 12:19:26 -05:00

16 lines
323 B
C#

using System.Reflection;
using Xunit;
/// <summary>
/// Tests to make sure our tests are ok.
/// </summary>
public class SelfTests
{
[Fact]
public void NoTestsUseAsyncVoid()
{
var errors = typeof(SelfTests).GetTypeInfo().Assembly.GetAsyncVoidMethodsList();
Assert.Equal("", errors);
}
}