Ich habe einen WCF-Dienst erstellt und versucht, eine der Methoden zu testen. Ich klickte mit der rechten Maustaste auf die WCF-Service-Methode und wählte Einheitstest erstellen.
Es wurde ein neues Testprojekt erstellt und ein Einheitstest angelegt.
Ich habe versucht, das Testprojekt auszuführen, aber ich bin nicht sicher, was die UrlToTest
Wert? Ich habe die URL des Dienstes angegeben.
[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.");
}