这些天,我遇到了团队系统单元测试的问题。我发现自动创建的访问器类忽略了通用约束——至少在以下情况下:
假设您有以下类:
namespace MyLibrary
{
public class MyClass
{
public Nullable<T> MyMethod<T>(string s) where T : struct
{
return (T)Enum.Parse(typeof(T), s, true);
}
}
}
如果要测试 MyMethod,可以使用以下测试方法创建一个测试项目:
public enum TestEnum { Item1, Item2, Item3 }
[TestMethod()]
public void MyMethodTest()
{
MyClass c = new MyClass();
PrivateObject po = new PrivateObject(c);
MyClass_Accessor target = new MyClass_Accessor(po);
// The following line produces the following error:
// Unit Test Adapter threw exception: GenericArguments[0], 'T', on
// 'System.Nullable`1[T]' violates the constraint of type parameter 'T'..
TestEnum? e1 = target.MyMethod<TestEnum>("item2");
// The following line works great but does not work for testing private methods.
TestEnum? e2 = c.MyMethod<TestEnum>("item2");
}
运行测试将失败,并出现上面代码片段注释中提到的错误。问题在于 Visual Studio 创建的访问器类。如果你进入它,你会得到以下代码:
namespace MyLibrary
{
[Shadowing("MyLibrary.MyClass")]
public class MyClass_Accessor : BaseShadow
{
protected static PrivateType m_privateType;
[Shadowing(".ctor@0")]
public MyClass_Accessor();
public MyClass_Accessor(PrivateObject __p1);
public static PrivateType ShadowedType { get; }
public static MyClass_Accessor AttachShadow(object __p1);
[Shadowing("MyMethod@1")]
public T? MyMethod(string s);
}
}
如您所见,MyMethod 方法的泛型类型参数没有约束。
这是一个错误吗?这是设计的吗?谁知道如何解决这个问题?
最佳答案
我投票错误。我不明白这是怎么设计的。
关于c# - 私有(private)访问器类忽略通用约束,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/64813/