示例#1
0
        public void Setup()
        {
            client = Substitute.For<IWebClient>();
            client.Download().Returns(downloadStringResult);

            target = new WebRequestBuilder(client);
        }
示例#2
0
 public void Teardown()
 {
     target = null;
 }