我創建了一個WCF服務並試圖測試其中一種方法。我右鍵單擊WCF服務方法並選擇創建單元測試。單元測試WCF方法
它創建了一個新的測試項目並創建了一個單元測試。
我試圖運行測試項目,但我不知道UrlToTest
值應該是多少?我已經把網址的服務。
[TestMethod()]
[HostType("ASP.NET")]
[AspNetDevelopmentServerHost("C:\\VS Projects\\NetBranch4\\" +
"MobileCheckCapture\\MobileCheckCapture", "/")]
// [UrlToTest("http://localhost:45651/")]
[UrlToTest("http://localhost/mobilecc/mobilecc.svc")]
public void AuthenticateUserTest()
{
// TODO: Initialize to an appropriate value
MobileCC target = new MobileCC();
// TODO: Initialize to an appropriate value
string authenticateRequest = string.Empty;
// TODO: Initialize to an appropriate value
string expected = string.Empty;
string actual;
actual = target.AuthenticateUser(authenticateRequest);
Assert.AreEqual(expected, actual);
Assert.Inconclusive("Verify the correctness of this test method.");
}
謝謝你現在的工作,但我已經把一個破發點上的實際數量=目標.AuthenticateUser(authenticateRequest);它不會中斷並讓我調試wcf方法 – user228777
轉到VS菜單中的Test,選擇「Debug - > Test in Current Context」。還有在VS的測試工具工具欄中運行測試的選項。 –
我沒有看到在調試菜單下的當前上下文中的測試選項,我是否需要進入選項進行設置?謝謝 – user228777