public void can_use_client_created_with_getsecretfromkey_implementation_to_set_signature()
        {
            var mockGetSecretFromKey = new Mock <IGetSecretFromUsername>();

            mockGetSecretFromKey.Setup(x => x.Secret("anyusername"))
            .Returns("secret");

            client             = SigningHttpClientFactory.Create("anyusername", mockGetSecretFromKey.Object);
            client.BaseAddress = new Uri("http://localhost:8080");

            testSignature();
        }
 public void SetUp()
 {
     client             = SigningHttpClientFactory.Create("anyusername", "secret");
     client.BaseAddress = new Uri("http://localhost:8080");
 }