AssertManager.Record中的参数正在运行,但我需要lambda动作中的值,这是断言。所以我需要得到我使用的断言类型,我从一个类传递到另一个类。我出于某种原因使用了lambda表达式,所以我无法编辑它。我只需要一个字符串类型,它表示我所做的任何类型的断言。在我的示例中,它应该向控制台输出“Assert.True”或“Assert.Equal”。
下面是我使用的示例代码:
public class ClassTest
{
AssertManager = new AssertManager();
[Fact]
public void sampleTestAssert()
{
AssertManager.Record(() => Assert.True(true));
AssertManager.Record(() => Assert.Equal("Dog","Dog"));
}
}
public class AssertManager
{
public void Record(Action testMethod)
{
//is it possible to use testMethod to get the Assert inside the lambda in the
//Output what assert i did (ex. Assert.True, Assert.Equal )
}
}
如果您有解决方案,请告诉我。谢谢。
答案 0 :(得分:0)
您需要使用Expression<Action>
代替Action
,然后才能反映lambda ......