Exemplo n.º 1
0
        public void Capture_Should_Use_HttpForm()
        {
            _httpForm.Setup(h => h.GetAsync(It.IsAny <HttpFormGetRequest>())).Verifiable();

            _thumbnail.Capture(Url);

            _httpForm.Verify();
        }
Exemplo n.º 2
0
        public void Capture_Should_Use_HttpForm()
        {
            _httpForm.Expect(h => h.GetAsync(It.IsAny <string>())).Verifiable();

            _thumbnail.Capture(Url);

            _httpForm.Verify();
        }