Beispiel #1
0
        public ShoutsClientTests()
        {
            _httpClientMock = new Mock <IHttpClient>();

            _shoutsClient = new ShoutsClient(_httpClientMock.Object, It.IsAny <string>());
        }
Beispiel #2
0
 public ShoutsController(IShoutsClient shoutsClient)
 {
     _shoutsClient = shoutsClient;
 }