如何在 ArchUnit c# 中检查方法 return 类型

How to check Methods return type in ArchUnit c#

我需要检查只有一个 class 方法(“ExampleMethod”)是 returns“ExampleType”。我可以使用 C# 中的 ArchUnit 来实现吗?

您不需要使用 ArchUnit - 或其他任何东西,只需使用 .NET 的内置反射 API:

using System;
using System.Linq;
using System.Reflection;

#if !( XUNIT || MSTEST || NUNIT)
    #error "Specify unit testing framework"
#endif

#if MSTEST
[TestClass]
#elif NUNIT
[TestFixture]
#endif
public class ReflectionTests
{
#if XUNIT
    [Fact]
#elif MSTEST
    [TestMethod]
#elif NUNIT
    [Test]
#endif
    public void MyClass_should_have_only_1_ExampleMethod()
    {
        const BindingFlags BF = BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.Static;

        MethodInfo mi = typeof(MyClass).GetMethods( BF ).Single( m => m.Name == "ExampleMethod" );

#if XUNIT
        Assert.Equal( expected: typeof(ExampleType), actual: mi.ReturnType );
#elif MSTEST || NUNIT
        Assert.AreEqual( expected: typeof(ExampleType), actual: mi.ReturnType );
#endif
    }
}