Beispiel #1
0
 public GivenANullResourcePathThen()
 {
     this.request = new FluentHttpRequest("https://graph.facebook.com")
                    .ResourcePath(null);
 }
 public GivenARequestWithResourcePathAlreadySetWhenISetANewResourcePathThen()
 {
     request = new FluentHttpRequest("https://graph.facebook.com").ResourcePath("/me");
 }
 public GivenAnEmptyResourcePathThen()
 {
     this.request = new FluentHttpRequest("https://graph.facebook.com")
                        .ResourcePath(string.Empty);
 }
Beispiel #4
0
 public GivenAnEmptyResourcePathThen()
 {
     this.request = new FluentHttpRequest("https://graph.facebook.com")
                    .ResourcePath(string.Empty);
 }
 public GivenANullResourcePathThen()
 {
     this.request = new FluentHttpRequest("https://graph.facebook.com")
                        .ResourcePath(null);
 }
 public GivenARequestWithResourcePathAlreadySetWhenISetANewResourcePathThen()
 {
     request = new FluentHttpRequest("https://graph.facebook.com").ResourcePath("/me");
 }