VS2008自动生成的单元测试用例:
/// <summary>
///A test for test Constructor
///</summary>
[TestMethod()]
public void testConstructorTest()
{
test target = new test();
Assert.Inconclusive("TODO: Implement code to verify target");
}作者: maguschen 时间: 2008-5-9 18:23
构造函数是课可以被测试的
楼主能够给出出错的提示么?
是不是你的测试项目跟开发项目是分离的
而你的构造函数声明为私有,所以NUNIT不能访问到私有的构造函数