Example #1
0
        public void GetObject_should_throw_EndpointUnreachableException_when_server_unavailable()
        {
            Func <Task> act = async() => await _s3Client.GetObject("test");

            act.Should().Throw <EndpointUnreachableException>();
        }