Files
octokit.net/Octokit.Tests.Integration/SelfTests.cs
2022-07-22 14:49:08 -05:00

19 lines
411 B
C#

using System.Reflection;
using Xunit;
namespace Octokit.Tests.Integration
{
/// <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);
}
}
}