4
我正在使用Visual Studio 2012,並且出現以下錯誤:「錯誤'hw02.World'不包含帶有2個參數的構造函數我嘗試創建單元測試我的課:Visual Studio 2012 - 單元測試錯誤
class World : IWorld
{
public World(int width, int height)
{
Width = width;
Height = height;
world = new IBuilding[width, height];
}
}
其產生錯誤的測試:
[TestClass]
public class UnitTest1
{
[TestMethod]
public void TestMethod1()
{
var world = new World(5, 5); // this line creates the error: 'hw02.World' does not contain a constructor that takes 2 arguments
}
}
感謝所有幫助
你是否確定*它正在看同一個'World'類?你的第一堂課肯定是'hw02.World'? –
世界不公開嗎? – jvilalta