コード例 #1
0
        public void Capture_Should_Use_HttpForm()
        {
            _httpForm.Setup(h => h.GetAsync(It.IsAny <HttpFormGetRequest>())).Verifiable();

            _thumbnail.Capture(Url);

            _httpForm.Verify();
        }
コード例 #2
0
        public void Capture_Should_Use_HttpForm()
        {
            _httpForm.Expect(h => h.GetAsync(It.IsAny <string>())).Verifiable();

            _thumbnail.Capture(Url);

            _httpForm.Verify();
        }