예제 #1
0
 public void GetAuthUrlTest()
 {
     OAuth2 target = new OAuth2(userAgent, server);
     string clientID = devKey; // Dev Key
     string redirectUrl = "http://www.wittsell.com/default.asp"; // TODO: Initialize to an appropriate value
     string userState = string.Empty; // TODO: Initialize to an appropriate value
     string language = string.Empty; // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     actual = target.GetAuthUrl(clientID, redirectUrl, userState, language);
     //Assert.AreEqual(expected, actual);
     //Assert.Inconclusive("Verify the correctness of this test method.");
 }