ACMESharp.ChallengeHandlerTests.TestHandleHttpChallenge C# (CSharp) Method

TestHandleHttpChallenge() private method

private TestHandleHttpChallenge ( ) : void
return void
        public void TestHandleHttpChallenge()
        {
            var prov = ChallengeHandlerExtManager.GetProvider("manual");
            Assert.IsNotNull(prov);
            var h = prov.GetHandler(HTTP_CHALLENGE, new Dictionary<string, object>
            {
                { "WriteOutPath", "DBG" }
            });

            h.Handle(HTTP_CHALLENGE);
            h.Dispose();
        }