mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
19 lines
411 B
C#
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);
|
|
}
|
|
}
|
|
}
|