public void Capture_Should_Use_HttpForm() { _httpForm.Setup(h => h.GetAsync(It.IsAny <HttpFormGetRequest>())).Verifiable(); _thumbnail.Capture(Url); _httpForm.Verify(); }
public void Capture_Should_Use_HttpForm() { _httpForm.Expect(h => h.GetAsync(It.IsAny <string>())).Verifiable(); _thumbnail.Capture(Url); _httpForm.Verify(); }