gpt4 book ai didi

c# - Internals、InternalsVisibleTo 和测试共享行为

转载 作者:行者123 更新时间:2023-11-30 12:43:08 25 4
gpt4 key购买 nike

我们有一个共享的基本接口(interface) public interface IOperation {...} 和许多(十个,很快 100+)实现 IOperation 的不同对象。

我们还对所有这些实现进行了测试,所有这些都继承自名为 TestOperationCommon 的基类,这些基类以实际操作类和类型为模板,用于 new 的 Create 方法,例如一个手术。我们有 TestOperationCommon 的实现,其中最多包含五个模板参数(足以满足所有操作)。

现在,最近决定将所有操作实现都内部化,只有 IOperation 是公开的,这似乎是个好主意,因为这些操作是实现细节。使用 [InternalsVisibleTo(...)] 测试似乎也解决了。

但是,现在我看到我们不能再使用我们的测试结构了,因为公共(public)测试类的通用参数现在是内部的(至少被测的实际类是),这导致

不一致的可访问性....比......更难访问

错误。下面的代码,公共(public)测试类不能从具有内部通用参数 T 的 TestOperationCommon 继承。但是将所有这些共享行为测试复制到特定测试中似乎也不是一个好主意。

  • 有没有办法让 vstest 框架 (VS2013+) 测试内部的 [TestClass]es?

  • 或者是否有另一种方法可以保留共享测试而无需重复大量代码?

  • 还是我们做错了(将那些“实现细节类”设置为内部)?

代码示例作为评论中的请求:

public interface IOperation { ... }

internal class SomeOperation : IOperation
{
public SomeOperation(A a, B b, C c) {...}
}


public abstract TestOperationCommon<T, A, B, C>
where T : IOperation
where ...
{
protected abstract T Create(A a, B b, C c);

[TestMethod]
public void TestCommonOperationBehavior()
{
var op = Create(Mock.Of<A>(), Mock.Of<B>(), Mock.Of<C>);
...
}
}

[TestClass]
public class TestSomeOperation : TestOperationCommon<SomeOperation, ...>
{
[TestMethod]
public void TestSpecificSomeOperationStuff() {}

}

最佳答案

你能创建一个测试包装类吗?

类似于:

[TestClass]
public class AnnoyingTestSomeOperationWrapper
{

[TestMethod]
public void TestSpecificSomeOperationStuff()
{
new TestSomeOperation().TestSpecificSomeOperationStuff()
}

}

internal class TestSomeOperation : TestOperationCommon<SomeOperation, ...>
{
public void TestSpecificSomeOperationStuff() {}

}

关于c# - Internals、InternalsVisibleTo 和测试共享行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32014368/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com